mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Get the linker files that slipped through in r31337.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31338 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
28dec004c0
commit
43d7a75369
6 changed files with 21 additions and 24 deletions
|
@ -57,7 +57,6 @@ SECTIONS
|
|||
{
|
||||
_loadaddress = .;
|
||||
_textstart = .;
|
||||
*(.text)
|
||||
*(.text*)
|
||||
*(.glue_7)
|
||||
*(.glue_7t)
|
||||
|
@ -84,9 +83,9 @@ SECTIONS
|
|||
.iram :
|
||||
{
|
||||
_iramstart = .;
|
||||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
*(.icode*)
|
||||
*(.irodata*)
|
||||
*(.idata*)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM AT> DRAM
|
||||
|
@ -97,7 +96,7 @@ SECTIONS
|
|||
{
|
||||
_iedata = .;
|
||||
*(.qharray)
|
||||
*(.ibss)
|
||||
*(.ibss*)
|
||||
. = ALIGN(0x4);
|
||||
_iend = .;
|
||||
} > IRAM
|
||||
|
|
|
@ -23,7 +23,7 @@ SECTIONS
|
|||
*(.glue_7)
|
||||
*(.glue_7t)
|
||||
*(.text*)
|
||||
*(.icode)
|
||||
*(.icode*)
|
||||
} > IRAM
|
||||
|
||||
.data : {
|
||||
|
|
|
@ -51,7 +51,6 @@ SECTIONS
|
|||
_loadaddress = .;
|
||||
_textstart = .;
|
||||
*(.init.text)
|
||||
*(.text)
|
||||
*(.text*)
|
||||
*(.glue_7)
|
||||
*(.glue_7t)
|
||||
|
@ -78,9 +77,9 @@ SECTIONS
|
|||
.iram :
|
||||
{
|
||||
_iramstart = .;
|
||||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
*(.icode*)
|
||||
*(.irodata*)
|
||||
*(.idata*)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM AT> DRAM
|
||||
|
@ -90,7 +89,7 @@ SECTIONS
|
|||
{
|
||||
_iedata = .;
|
||||
*(.qharray)
|
||||
*(.ibss)
|
||||
*(.ibss*)
|
||||
. = ALIGN(0x4);
|
||||
_iend = .;
|
||||
} > IRAM
|
||||
|
|
|
@ -75,9 +75,9 @@ SECTIONS
|
|||
|
||||
.data : {
|
||||
_datastart = . ;
|
||||
*(.irodata)
|
||||
*(.icode)
|
||||
*(.idata)
|
||||
*(.irodata*)
|
||||
*(.icode*)
|
||||
*(.idata*)
|
||||
*(.data*)
|
||||
*(.ncdata*);
|
||||
. = ALIGN(0x4);
|
||||
|
@ -106,7 +106,7 @@ SECTIONS
|
|||
.bss (NOLOAD) : {
|
||||
_edata = .;
|
||||
*(.bss*);
|
||||
*(.ibss);
|
||||
*(.ibss*);
|
||||
*(.ncbss*);
|
||||
*(COMMON);
|
||||
. = ALIGN(0x4);
|
||||
|
|
|
@ -46,7 +46,6 @@ SECTIONS
|
|||
_loadaddress = .;
|
||||
_textstart = .;
|
||||
*(.init.text)
|
||||
*(.text)
|
||||
*(.text*)
|
||||
*(.glue_7)
|
||||
*(.glue_7t)
|
||||
|
@ -73,9 +72,9 @@ SECTIONS
|
|||
.iram :
|
||||
{
|
||||
_iramstart = .;
|
||||
*(.icode)
|
||||
*(.irodata)
|
||||
*(.idata)
|
||||
*(.icode*)
|
||||
*(.irodata*)
|
||||
*(.idata*)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM AT> DRAM
|
||||
|
@ -85,7 +84,7 @@ SECTIONS
|
|||
{
|
||||
_iedata = .;
|
||||
*(.qharray)
|
||||
*(.ibss)
|
||||
*(.ibss*)
|
||||
. = ALIGN(0x4);
|
||||
_iend = .;
|
||||
} > IRAM
|
||||
|
|
|
@ -56,9 +56,9 @@ SECTIONS
|
|||
|
||||
.data : {
|
||||
_datastart = . ;
|
||||
*(.irodata)
|
||||
*(.icode)
|
||||
*(.idata)
|
||||
*(.irodata*)
|
||||
*(.icode*)
|
||||
*(.idata*)
|
||||
*(.data*)
|
||||
*(.ncdata*);
|
||||
. = ALIGN(0x4);
|
||||
|
@ -85,7 +85,7 @@ SECTIONS
|
|||
.bss (NOLOAD) : {
|
||||
_edata = .;
|
||||
*(.bss*);
|
||||
*(.ibss);
|
||||
*(.ibss*);
|
||||
*(.ncbss*);
|
||||
*(COMMON);
|
||||
. = ALIGN(0x4);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue