diff options
author | Nils Wallménius <nils@rockbox.org> | 2011-01-12 21:24:44 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2011-01-12 21:24:44 +0000 |
commit | 54424fa616b72dcf75f84c898a35189f3cd309c5 (patch) | |
tree | 18b20e19165caf9864d6f2ec06b89ce211f40e60 /firmware/target/coldfire/iriver | |
parent | 874b805048c596a9dd393a91080b81071ec04edf (diff) |
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
Diffstat (limited to 'firmware/target/coldfire/iriver')
-rw-r--r-- | firmware/target/coldfire/iriver/boot.lds | 2 |
1 files changed, 1 insertions, 1 deletions
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 stackend = .; } > IRAM - .bss DRAMORIG+0x800000: + .bss DRAMORIG+0x800000 (NOLOAD) : { _edata = .; *(.ibss) |