mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -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
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue