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*)
|
||||
} > DRAM
|
||||
|
||||
.dramcopyend (NOLOAD) :
|
||||
{
|
||||
_dramcopyend = .;
|
||||
} > DRAM
|
||||
|
||||
.init ENDAUDIOADDR :
|
||||
{
|
||||
_initstart = .;
|
||||
*(.init*)
|
||||
_initend = .;
|
||||
} AT> DRAM
|
||||
|
||||
_initcopy = LOADADDR(.init);
|
||||
|
||||
.itext :
|
||||
{
|
||||
_iramstart = .; // always 0
|
||||
|
@ -82,7 +68,21 @@ SECTIONS
|
|||
_iend = .;
|
||||
} > IRAM
|
||||
|
||||
.stack _dramcopyend (NOLOAD) :
|
||||
.init ENDAUDIOADDR :
|
||||
{
|
||||
_initstart = .;
|
||||
*(.init*)
|
||||
_initend = .;
|
||||
} AT> DRAM
|
||||
|
||||
_initcopy = LOADADDR(.init);
|
||||
|
||||
.dramcopyend (NOLOAD) :
|
||||
{
|
||||
_dramcopyend = .;
|
||||
} > DRAM
|
||||
|
||||
.stack (NOLOAD) :
|
||||
{
|
||||
*(.stack)
|
||||
stackbegin = .;
|
||||
|
|
Loading…
Reference in a new issue