satip-axe/kernel/arch/mips/lasat/image/romscript.normal
2015-03-26 17:24:57 +01:00

24 lines
225 B
Plaintext

OUTPUT_ARCH(mips)
SECTIONS
{
.text :
{
*(.text.start)
}
/* Data in ROM */
.data ALIGN(0x10) :
{
*(.data)
}
_image_start = ADDR(.data);
_image_size = SIZEOF(.data);
.other :
{
*(.*)
}
}