malta: Simplify bsp_specs

Updates #3250.
This commit is contained in:
Joel Sherrill
2017-12-18 16:53:10 -06:00
parent 72dd9f03f7
commit 3167e677ae
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:
%(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

@@ -10,6 +10,9 @@ RamSize = DEFINED(RamSize) ? RamSize : 128M;
HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0; HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0;
_StackSize = DEFINED(_StackSize) ? _StackSize : 0x2000; _StackSize = DEFINED(_StackSize) ? _StackSize : 0x2000;
ENTRY(_start)
STARTUP(start.o)
SECTIONS SECTIONS
{ {
. = 0x80010000; . = 0x80010000;