summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Wardell <rockbox@barrywardell.net>2008-05-04 14:42:53 +0000
committerBarry Wardell <rockbox@barrywardell.net>2008-05-04 14:42:53 +0000
commit27f59f64c66282933966034a26ca2566995b45ab (patch)
tree68fe841cd12ef75a77e14363033035e2718573ba
parent5f7432fdff5d798a3aa6fbc4fcdc3f2a9cdf4410 (diff)
downloadrockbox-27f59f64c66282933966034a26ca2566995b45ab.tar.gz
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
-rw-r--r--firmware/target/arm/ipod/boot.lds4
-rw-r--r--firmware/target/arm/iriver/boot.lds4
-rw-r--r--firmware/target/arm/olympus/boot.lds4
-rw-r--r--firmware/target/arm/sandisk/boot.lds4
4 files changed, 8 insertions, 8 deletions
diff --git a/firmware/target/arm/ipod/boot.lds b/firmware/target/arm/ipod/boot.lds
index 69a89cd5f5..ae5358ae93 100644
--- a/firmware/target/arm/ipod/boot.lds
+++ b/firmware/target/arm/ipod/boot.lds
@@ -68,8 +68,8 @@ SECTIONS
68 /* The bss section is too large for IRAM - we just move it 16MB into the 68 /* The bss section is too large for IRAM - we just move it 16MB into the
69 DRAM */ 69 DRAM */
70 70
71 . = (DRAMORIG+16*1024*1024); 71 . = DRAMORIG;
72 .bss : { 72 .bss . + (16*1024*1024): {
73 _edata = .; 73 _edata = .;
74 *(.bss*); 74 *(.bss*);
75 *(.ibss); 75 *(.ibss);
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
52 /* The bss section is too large for IRAM - we just move it 16MB into the 52 /* The bss section is too large for IRAM - we just move it 16MB into the
53 DRAM */ 53 DRAM */
54 54
55 . = (DRAMORIG+16*1024*1024); 55 . = DRAMORIG;
56 .bss : { 56 .bss . + (16*1024*1024) : {
57 _edata = .; 57 _edata = .;
58 *(.bss*); 58 *(.bss*);
59 *(.ibss); 59 *(.ibss);
diff --git a/firmware/target/arm/olympus/boot.lds b/firmware/target/arm/olympus/boot.lds
index e083aa4a08..95a1c873db 100644
--- a/firmware/target/arm/olympus/boot.lds
+++ b/firmware/target/arm/olympus/boot.lds
@@ -52,8 +52,8 @@ SECTIONS
52 /* The bss section is too large for IRAM - we just move it 16MB into the 52 /* The bss section is too large for IRAM - we just move it 16MB into the
53 DRAM */ 53 DRAM */
54 54
55 . = (DRAMORIG+16*1024*1024); 55 . = DRAMORIG;
56 .bss : { 56 .bss . + (16*1024*1024): {
57 _edata = .; 57 _edata = .;
58 *(.bss*); 58 *(.bss*);
59 *(.ibss); 59 *(.ibss);
diff --git a/firmware/target/arm/sandisk/boot.lds b/firmware/target/arm/sandisk/boot.lds
index 1eeda06340..d115aa5949 100644
--- a/firmware/target/arm/sandisk/boot.lds
+++ b/firmware/target/arm/sandisk/boot.lds
@@ -54,8 +54,8 @@ SECTIONS
54 /* The bss section is too large for IRAM - we just move it 16MB into the 54 /* The bss section is too large for IRAM - we just move it 16MB into the
55 DRAM */ 55 DRAM */
56 56
57 . = (DRAMORIG+16*1024*1024); 57 . = DRAMORIG;
58 .bss : { 58 .bss . + (16*1024*1024) : {
59 _edata = .; 59 _edata = .;
60 *(.bss*); 60 *(.bss*);
61 *(.ibss); 61 *(.ibss);