csb360: Simplify bsp_specs

Updates #3520.
This commit is contained in:
Joel Sherrill
2017-12-19 10:33:16 -06:00
parent 9a5cf9c0c7
commit eca0eeb332
2 changed files with 4 additions and 5 deletions

View File

@@ -1,13 +1,9 @@
%rename endfile old_endfile %rename endfile old_endfile
%rename startfile old_startfile %rename startfile old_startfile
%rename link old_link
*startfile: *startfile:
%{!qrtems: %(old_startfile)} \ %{!qrtems: %(old_startfile)} \
%{!nostdlib: %{qrtems: start.o%s crti.o%s crtbegin.o%s -e start}} %{!nostdlib: %{qrtems: crti.o%s crtbegin.o%s}}
*link:
%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N}
*endfile: *endfile:
%{!qrtems: %(old_endfile)} %{qrtems: crtend.o%s crtn.o%s} %{!qrtems: %(old_endfile)} %{qrtems: crtend.o%s crtn.o%s}

View File

@@ -19,6 +19,9 @@ RamSize = DEFINED(RamSize) ? RamSize : 31M;
* WARNING: it MUST match BSP_RAMBAR !!!!!!!!!!! */ * WARNING: it MUST match BSP_RAMBAR !!!!!!!!!!! */
_VBR = 0x20000000; _VBR = 0x20000000;
ENTRY(start)
STARTUP(start.o)
/* /*
* Setup the memory map of the CSB360 board * Setup the memory map of the CSB360 board
* *