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:
Amaury Pouly 2014-02-17 14:30:00 +01:00
parent 7f0b7b720a
commit dd6f5cfb1e

View file

@ -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 = .;