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 | |
| parent | 5f7432fdff5d798a3aa6fbc4fcdc3f2a9cdf4410 (diff) | |
| download | rockbox-27f59f64c66282933966034a26ca2566995b45ab.zip rockbox-27f59f64c66282933966034a26ca2566995b45ab.tar.gz rockbox-27f59f64c66282933966034a26ca2566995b45ab.tar.bz2 rockbox-27f59f64c66282933966034a26ca2566995b45ab.tar.xz | |
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
| -rw-r--r-- | firmware/target/arm/ipod/boot.lds | 4 | ||||
| -rw-r--r-- | firmware/target/arm/iriver/boot.lds | 4 | ||||
| -rw-r--r-- | firmware/target/arm/olympus/boot.lds | 4 | ||||
| -rw-r--r-- | firmware/target/arm/sandisk/boot.lds | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/firmware/target/arm/ipod/boot.lds b/firmware/target/arm/ipod/boot.lds index 69a89cd..ae5358a 100644 --- a/firmware/target/arm/ipod/boot.lds +++ b/firmware/target/arm/ipod/boot.lds @@ -68,8 +68,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); diff --git a/firmware/target/arm/iriver/boot.lds b/firmware/target/arm/iriver/boot.lds index ab6a576..bf7d2b6 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); diff --git a/firmware/target/arm/olympus/boot.lds b/firmware/target/arm/olympus/boot.lds index e083aa4..95a1c87 100644 --- a/firmware/target/arm/olympus/boot.lds +++ b/firmware/target/arm/olympus/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); diff --git a/firmware/target/arm/sandisk/boot.lds b/firmware/target/arm/sandisk/boot.lds index 1eeda06..d115aa5 100644 --- a/firmware/target/arm/sandisk/boot.lds +++ b/firmware/target/arm/sandisk/boot.lds @@ -54,8 +54,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); |