summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/csb337/startup/linkcmds.csb637
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-06-18 19:54:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-06-18 19:54:37 +0000
commit753ddb2ffbcd5441c27597a01b58448f10e72f70 (patch)
tree7630569570becd7558738ff4139c707d4043ab55 /c/src/lib/libbsp/arm/csb337/startup/linkcmds.csb637
parent2009-06-18 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-753ddb2ffbcd5441c27597a01b58448f10e72f70.tar.bz2
2009-06-18 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds, startup/linkcmds.csb637: Move .init section from the front of the executable so the start label has the first instruction in the executable.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/arm/csb337/startup/linkcmds.csb63710
1 files changed, 5 insertions, 5 deletions
diff --git a/c/src/lib/libbsp/arm/csb337/startup/linkcmds.csb637 b/c/src/lib/libbsp/arm/csb337/startup/linkcmds.csb637
index d37855fef3..9cfd3f76c2 100644
--- a/c/src/lib/libbsp/arm/csb337/startup/linkcmds.csb637
+++ b/c/src/lib/libbsp/arm/csb337/startup/linkcmds.csb637
@@ -71,11 +71,6 @@ SECTIONS
} > sram
- .init :
- {
- KEEP (*(.init))
- } > sdram /*=0*/
-
.text :
{
_text_start = .;
@@ -115,6 +110,11 @@ SECTIONS
PROVIDE (etext = .);
} > sdram
+ .init :
+ {
+ KEEP (*(.init))
+ } > sdram /*=0*/
+
.fini :
{
KEEP (*(.fini))