Fix a bunch of boot.lds files so that they build with newer ld. The stack/bss sections need NOLOAD. otherwise the linker would try to include those into the binary. I don't know why this ever worked with our current ld version.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25078 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-03-08 23:16:57 +00:00
parent 6b988afed2
commit 02660557ad
13 changed files with 26 additions and 26 deletions

View file

@ -40,7 +40,7 @@ SECTIONS
_dataend = . ;
} > IRAM
.stack : {
.stack (NOLOAD) : {
*(.stack)
_stackbegin = .;
stackbegin = .;
@ -53,7 +53,7 @@ SECTIONS
DRAM */
. = DRAMORIG;
.bss . + (16*1024*1024) : {
.bss . + (16*1024*1024) (NOLOAD) : {
_edata = .;
*(.bss*);
*(.ibss);