diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-02-23 10:40:14 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-02-23 10:40:14 +0000 |
commit | c71900c02f90f9dd24836338d2a279fdc51d8091 (patch) | |
tree | e35e26698e30bda8ff47ef0399c88618af5b6787 | |
parent | 753ed63d4684bff7689146bf9ed130a4579feb28 (diff) | |
download | rockbox-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.lds | 5 |
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) #define DRAMORIG 0x31000000 #define IRAMORIG 0x10000000 #define IRAMSIZE 0x20000 -#define FLASHORIG 0x00100000 +#define FLASHORIG 0x00010000 #define FLASHSIZE 4M #elif CONFIG_CPU == PP5020 #define DRAMORIG 0x10000000 @@ -104,6 +104,9 @@ SECTIONS { .vectors : { +#ifdef IAUDIO_X5 + *(.init.text) +#endif _datacopy = .; } > FLASH |