summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2011-01-12 21:24:44 +0000
committerNils Wallménius <nils@rockbox.org>2011-01-12 21:24:44 +0000
commit54424fa616b72dcf75f84c898a35189f3cd309c5 (patch)
tree18b20e19165caf9864d6f2ec06b89ce211f40e60
parent874b805048c596a9dd393a91080b81071ec04edf (diff)
downloadrockbox-54424fa616b72dcf75f84c898a35189f3cd309c5.tar.gz
rockbox-54424fa616b72dcf75f84c898a35189f3cd309c5.zip
Fix warning when linking booltoaders with the new toolchain by marking .bss section NOLOAD, thanks for gevaerts for testing on his x5.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29037 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/coldfire/iaudio/boot.lds2
-rw-r--r--firmware/target/coldfire/iriver/boot.lds2
-rw-r--r--firmware/target/coldfire/mpio/boot.lds2
3 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/coldfire/iaudio/boot.lds b/firmware/target/coldfire/iaudio/boot.lds
index bf307ae994..9d52f48e7d 100644
--- a/firmware/target/coldfire/iaudio/boot.lds
+++ b/firmware/target/coldfire/iaudio/boot.lds
@@ -79,7 +79,7 @@ SECTIONS
79 stackend = .; 79 stackend = .;
80 } > IRAM 80 } > IRAM
81 81
82 .bss DRAMORIG+0x800000: 82 .bss DRAMORIG+0x800000 (NOLOAD) :
83 { 83 {
84 _edata = .; 84 _edata = .;
85 *(.ibss) 85 *(.ibss)
diff --git a/firmware/target/coldfire/iriver/boot.lds b/firmware/target/coldfire/iriver/boot.lds
index 5330cb6df7..7f8e01377f 100644
--- a/firmware/target/coldfire/iriver/boot.lds
+++ b/firmware/target/coldfire/iriver/boot.lds
@@ -78,7 +78,7 @@ SECTIONS
78 stackend = .; 78 stackend = .;
79 } > IRAM 79 } > IRAM
80 80
81 .bss DRAMORIG+0x800000: 81 .bss DRAMORIG+0x800000 (NOLOAD) :
82 { 82 {
83 _edata = .; 83 _edata = .;
84 *(.ibss) 84 *(.ibss)
diff --git a/firmware/target/coldfire/mpio/boot.lds b/firmware/target/coldfire/mpio/boot.lds
index 2b086586ad..9da99b8317 100644
--- a/firmware/target/coldfire/mpio/boot.lds
+++ b/firmware/target/coldfire/mpio/boot.lds
@@ -70,7 +70,7 @@ SECTIONS
70 stackend = .; 70 stackend = .;
71 } > IRAM 71 } > IRAM
72 72
73 .bss DRAMORIG+0x800000: 73 .bss DRAMORIG+0x800000 (NOLOAD) :
74 { 74 {
75 _edata = .; 75 _edata = .;
76 *(.ibss) 76 *(.ibss)