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

@ -74,7 +74,7 @@ SECTIONS
} > IRAM AT> LOAD_AREA
_datacopy = LOADADDR(.data) ;
.stack :
.stack (NOLOAD) :
{
*(.stack)
_stackbegin = .;
@ -96,7 +96,7 @@ SECTIONS
DRAM */
. += (12*1024*1024);
#endif
.bss : {
.bss : (NOLOAD) {
_edata = .;
*(.bss*);
*(.ibss);