summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2017-12-18 17:52:22 -0600
committerJoel Sherrill <joel@rtems.org>2017-12-19 11:06:39 -0600
commit6510e1f335fc5131ae7a970c1439a7bc1e53626d (patch)
treeb90fbda1fe3ae2db1478f712bd4dfd5908ded8bb
parentshsim: Simplify bsp_specs (diff)
downloadrtems-6510e1f335fc5131ae7a970c1439a7bc1e53626d.tar.bz2
gensh1: Simplify bsp_specs
Updates #3250.
-rw-r--r--c/src/lib/libbsp/sh/gensh1/bsp_specs6
-rw-r--r--c/src/lib/libbsp/sh/gensh1/startup/linkcmds1
2 files changed, 2 insertions, 5 deletions
diff --git a/c/src/lib/libbsp/sh/gensh1/bsp_specs b/c/src/lib/libbsp/sh/gensh1/bsp_specs
index 975c0b2b51..87638cc027 100644
--- a/c/src/lib/libbsp/sh/gensh1/bsp_specs
+++ b/c/src/lib/libbsp/sh/gensh1/bsp_specs
@@ -1,13 +1,9 @@
%rename endfile old_endfile
%rename startfile old_startfile
-%rename link old_link
*startfile:
%{!qrtems: %(old_startfile)} \
-%{!nostdlib: %{qrtems: start.o%s crti.o%s crtbegin.o%s -e _start}}
-
-*link:
-%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N}
+%{!nostdlib: %{qrtems: crti.o%s crtbegin.o%s}}
*endfile:
%{!qrtems: %(old_endfile)} %{qrtems: crtend.o%s crtn.o%s}
diff --git a/c/src/lib/libbsp/sh/gensh1/startup/linkcmds b/c/src/lib/libbsp/sh/gensh1/startup/linkcmds
index d5945b37de..d268d4cfc7 100644
--- a/c/src/lib/libbsp/sh/gensh1/startup/linkcmds
+++ b/c/src/lib/libbsp/sh/gensh1/startup/linkcmds
@@ -28,6 +28,7 @@
OUTPUT_ARCH(sh)
ENTRY(_start)
+STARTUP(start.o)
_RamBase = DEFINED(_RamBase) ? _RamBase : 0x0a040000;
_RamSize = DEFINED(_RamSize) ? _RamSize : 512K;