nt9856x/BSP/linux-kernel/arch/mips/lasat/image/romscript.normal
2023-03-28 15:07:53 +08:00

24 lines
226 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 :
{
*(.*)
}
}