da8bff107e
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18782 a1c6a512-1295-4272-9138-f99709370657
43 lines
536 B
Text
43 lines
536 B
Text
#include "config.h"
|
|
|
|
ENTRY(start)
|
|
OUTPUT_FORMAT(elf32-littlearm)
|
|
OUTPUT_ARCH(arm)
|
|
STARTUP(target/arm/crt0.o)
|
|
|
|
SECTIONS
|
|
{
|
|
/*. = IRAMORIG; */
|
|
|
|
.text : {
|
|
*(.init.text)
|
|
*(.text*)
|
|
}
|
|
|
|
.data : {
|
|
*(.icode)
|
|
*(.irodata)
|
|
*(.idata)
|
|
*(.data*)
|
|
*(.ncdata*);
|
|
_dataend = . ;
|
|
}
|
|
|
|
.stack :
|
|
{
|
|
*(.stack)
|
|
_stackbegin = .;
|
|
stackbegin = .;
|
|
. += 0x2000;
|
|
_stackend = .;
|
|
stackend = .;
|
|
}
|
|
|
|
.bss : {
|
|
_edata = .;
|
|
*(.bss*);
|
|
*(.ibss);
|
|
*(.ncbss*);
|
|
_end = .;
|
|
}
|
|
}
|