mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-10 13:45:10 -05:00
Revert "imx233: fix app.lds to properly support INIT_ATTR"
This reverts commit 2b02cbe1cc.
For some reason it breaks the build, more investigation is needed.
This commit is contained in:
parent
7f0b7b720a
commit
dd6f5cfb1e
1 changed files with 15 additions and 15 deletions
|
|
@ -47,20 +47,6 @@ SECTIONS
|
||||||
*(.rodata*)
|
*(.rodata*)
|
||||||
} > DRAM
|
} > DRAM
|
||||||
|
|
||||||
.dramcopyend (NOLOAD) :
|
|
||||||
{
|
|
||||||
_dramcopyend = .;
|
|
||||||
} > DRAM
|
|
||||||
|
|
||||||
.init ENDAUDIOADDR :
|
|
||||||
{
|
|
||||||
_initstart = .;
|
|
||||||
*(.init*)
|
|
||||||
_initend = .;
|
|
||||||
} AT> DRAM
|
|
||||||
|
|
||||||
_initcopy = LOADADDR(.init);
|
|
||||||
|
|
||||||
.itext :
|
.itext :
|
||||||
{
|
{
|
||||||
_iramstart = .; // always 0
|
_iramstart = .; // always 0
|
||||||
|
|
@ -82,7 +68,21 @@ SECTIONS
|
||||||
_iend = .;
|
_iend = .;
|
||||||
} > IRAM
|
} > IRAM
|
||||||
|
|
||||||
.stack _dramcopyend (NOLOAD) :
|
.init ENDAUDIOADDR :
|
||||||
|
{
|
||||||
|
_initstart = .;
|
||||||
|
*(.init*)
|
||||||
|
_initend = .;
|
||||||
|
} AT> DRAM
|
||||||
|
|
||||||
|
_initcopy = LOADADDR(.init);
|
||||||
|
|
||||||
|
.dramcopyend (NOLOAD) :
|
||||||
|
{
|
||||||
|
_dramcopyend = .;
|
||||||
|
} > DRAM
|
||||||
|
|
||||||
|
.stack (NOLOAD) :
|
||||||
{
|
{
|
||||||
*(.stack)
|
*(.stack)
|
||||||
stackbegin = .;
|
stackbegin = .;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue