mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
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:
parent
6b988afed2
commit
02660557ad
13 changed files with 26 additions and 26 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue