summaryrefslogtreecommitdiffstats
path: root/firmware/target/coldfire/iaudio
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-04-29 06:19:32 +0000
committerJens Arnold <amiconn@rockbox.org>2008-04-29 06:19:32 +0000
commit2bbacf89fea9f5613fd884b57809070da5b8c925 (patch)
tree6af43aad91a09e02f4325b50d361154dc3ea8beb /firmware/target/coldfire/iaudio
parentf3d83c7be7e9cb5700cb5b3d8632867a1862bc80 (diff)
downloadrockbox-2bbacf89fea9f5613fd884b57809070da5b8c925.tar.gz
rockbox-2bbacf89fea9f5613fd884b57809070da5b8c925.zip
Make sure the linker considers crt0*.o before all files specified on the command line by using STARTUP() instead of INPUT() in the .lds. Using INPUT() makes the linker process crt0*.o after all files specified on the command line, making linking fail if there are librockbox.a members which are only referenced by crt0*.o. Remove the hackaround that was needed for building the gigabeat S bootloader before (aka UIE() problem).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17289 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/coldfire/iaudio')
-rw-r--r--firmware/target/coldfire/iaudio/app.lds2
-rw-r--r--firmware/target/coldfire/iaudio/boot.lds2
2 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/coldfire/iaudio/app.lds b/firmware/target/coldfire/iaudio/app.lds
index 63c462cf4a..d3ccce24f0 100644
--- a/firmware/target/coldfire/iaudio/app.lds
+++ b/firmware/target/coldfire/iaudio/app.lds
@@ -3,7 +3,7 @@
ENTRY(start)
OUTPUT_FORMAT(elf32-m68k)
-INPUT(target/coldfire/crt0.o)
+STARTUP(target/coldfire/crt0.o)
#define PLUGINSIZE PLUGIN_BUFFER_SIZE
#define CODECSIZE CODEC_SIZE
diff --git a/firmware/target/coldfire/iaudio/boot.lds b/firmware/target/coldfire/iaudio/boot.lds
index 17b1457747..bf307ae994 100644
--- a/firmware/target/coldfire/iaudio/boot.lds
+++ b/firmware/target/coldfire/iaudio/boot.lds
@@ -2,7 +2,7 @@
ENTRY(start)
OUTPUT_FORMAT(elf32-m68k)
-INPUT(target/coldfire/crt0.o)
+STARTUP(target/coldfire/crt0.o)
#define DRAMSIZE (MEMORYSIZE * 0x100000)