summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2017-12-18 13:59:58 -0600
committerJoel Sherrill <joel@rtems.org>2017-12-19 11:06:36 -0600
commit0fd617e26610ce0e5bb48de57440a66133771aec (patch)
treed8b2ade2bae2b40c352abde1b64a87ffece3c7a1
parentpc386: Simplify bsp_specs (diff)
downloadrtems-0fd617e26610ce0e5bb48de57440a66133771aec.tar.bz2
lm32_evr: Simplify bsp_specs
Updates #3520.
-rw-r--r--c/src/lib/libbsp/lm32/lm32_evr/bsp_specs6
-rw-r--r--c/src/lib/libbsp/lm32/lm32_evr/startup/linkcmds3
2 files changed, 3 insertions, 6 deletions
diff --git a/c/src/lib/libbsp/lm32/lm32_evr/bsp_specs b/c/src/lib/libbsp/lm32/lm32_evr/bsp_specs
index 5154de8c55..87638cc027 100644
--- a/c/src/lib/libbsp/lm32/lm32_evr/bsp_specs
+++ b/c/src/lib/libbsp/lm32/lm32_evr/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/lm32/lm32_evr/startup/linkcmds b/c/src/lib/libbsp/lm32/lm32_evr/startup/linkcmds
index aea7cbf329..63747f33dc 100644
--- a/c/src/lib/libbsp/lm32/lm32_evr/startup/linkcmds
+++ b/c/src/lib/libbsp/lm32/lm32_evr/startup/linkcmds
@@ -1,7 +1,8 @@
OUTPUT_FORMAT("elf32-lm32", "elf32-lm32",
"elf32-lm32")
OUTPUT_ARCH(lm32)
-ENTRY(_start)
+ENTRY(start)
+STARTUP(start.o)
/* Do we need any of these for elf?
__DYNAMIC = 0; */