mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
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
This commit is contained in:
parent
874b805048
commit
54424fa616
3 changed files with 3 additions and 3 deletions
|
|
@ -79,7 +79,7 @@ SECTIONS
|
||||||
stackend = .;
|
stackend = .;
|
||||||
} > IRAM
|
} > IRAM
|
||||||
|
|
||||||
.bss DRAMORIG+0x800000:
|
.bss DRAMORIG+0x800000 (NOLOAD) :
|
||||||
{
|
{
|
||||||
_edata = .;
|
_edata = .;
|
||||||
*(.ibss)
|
*(.ibss)
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ SECTIONS
|
||||||
stackend = .;
|
stackend = .;
|
||||||
} > IRAM
|
} > IRAM
|
||||||
|
|
||||||
.bss DRAMORIG+0x800000:
|
.bss DRAMORIG+0x800000 (NOLOAD) :
|
||||||
{
|
{
|
||||||
_edata = .;
|
_edata = .;
|
||||||
*(.ibss)
|
*(.ibss)
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,7 @@ SECTIONS
|
||||||
stackend = .;
|
stackend = .;
|
||||||
} > IRAM
|
} > IRAM
|
||||||
|
|
||||||
.bss DRAMORIG+0x800000:
|
.bss DRAMORIG+0x800000 (NOLOAD) :
|
||||||
{
|
{
|
||||||
_edata = .;
|
_edata = .;
|
||||||
*(.ibss)
|
*(.ibss)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue