blob: 65e2a0d1ae396bd52e72f28270dcc935966675e5 [file] [log] [blame]
SECTIONS
{
.text :
{
__stext = . ;
__text = .;
*(.text.startup)
*(.text)
__etext = . ;
}
.rodata :
{
*(.rodata)
}
.data :
{
__sdata = . ;
___data_start = . ;
*(.data.*)
}
.bss :
{
. = ALIGN(0x4) ;
__sbss = . ;
*(.bss*)
. = ALIGN(0x4) ;
__ebss = . ;
__end = . ;
}
}