diff options
author | Barry Wardell <rockbox@barrywardell.net> | 2008-05-04 14:42:53 +0000 |
---|---|---|
committer | Barry Wardell <rockbox@barrywardell.net> | 2008-05-04 14:42:53 +0000 |
commit | 27f59f64c66282933966034a26ca2566995b45ab (patch) | |
tree | 68fe841cd12ef75a77e14363033035e2718573ba /firmware/target/arm/iriver | |
parent | 5f7432fdff5d798a3aa6fbc4fcdc3f2a9cdf4410 (diff) | |
download | rockbox-27f59f64c66282933966034a26ca2566995b45ab.tar.gz rockbox-27f59f64c66282933966034a26ca2566995b45ab.tar.bz2 rockbox-27f59f64c66282933966034a26ca2566995b45ab.zip |
Make the H10 bootloader work again. Also fix the same problem that might be affecting other PP bootloaders.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17357 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/iriver')
-rw-r--r-- | firmware/target/arm/iriver/boot.lds | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/iriver/boot.lds b/firmware/target/arm/iriver/boot.lds index ab6a576078..bf7d2b6431 100644 --- a/firmware/target/arm/iriver/boot.lds +++ b/firmware/target/arm/iriver/boot.lds @@ -52,8 +52,8 @@ SECTIONS /* The bss section is too large for IRAM - we just move it 16MB into the DRAM */ - . = (DRAMORIG+16*1024*1024); - .bss : { + . = DRAMORIG; + .bss . + (16*1024*1024) : { _edata = .; *(.bss*); *(.ibss); |