summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-02-23 10:40:14 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-02-23 10:40:14 +0000
commitc71900c02f90f9dd24836338d2a279fdc51d8091 (patch)
treee35e26698e30bda8ff47ef0399c88618af5b6787
parent753ed63d4684bff7689146bf9ed130a4579feb28 (diff)
downloadrockbox-c71900c02f90f9dd24836338d2a279fdc51d8091.tar.gz
rockbox-c71900c02f90f9dd24836338d2a279fdc51d8091.zip
The iAudio bootloader needs to have the startup code first in memory
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8802 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/boot.lds5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/boot.lds b/firmware/boot.lds
index 2f4594158e..779b7b3b85 100644
--- a/firmware/boot.lds
+++ b/firmware/boot.lds
@@ -30,7 +30,7 @@ INPUT(crt0.o)
30#define DRAMORIG 0x31000000 30#define DRAMORIG 0x31000000
31#define IRAMORIG 0x10000000 31#define IRAMORIG 0x10000000
32#define IRAMSIZE 0x20000 32#define IRAMSIZE 0x20000
33#define FLASHORIG 0x00100000 33#define FLASHORIG 0x00010000
34#define FLASHSIZE 4M 34#define FLASHSIZE 4M
35#elif CONFIG_CPU == PP5020 35#elif CONFIG_CPU == PP5020
36#define DRAMORIG 0x10000000 36#define DRAMORIG 0x10000000
@@ -104,6 +104,9 @@ SECTIONS
104{ 104{
105 .vectors : 105 .vectors :
106 { 106 {
107#ifdef IAUDIO_X5
108 *(.init.text)
109#endif
107 _datacopy = .; 110 _datacopy = .;
108 } > FLASH 111 } > FLASH
109 112