lineage_kernel_xcoverpro/arch/mips/lasat/image/romscript.normal

24 lines
226 B
Plaintext
Raw Normal View History

2023-06-18 22:53:49 +00:00
OUTPUT_ARCH(mips)
SECTIONS
{
.text :
{
*(.text..start)
}
/* Data in ROM */
.data ALIGN(0x10) :
{
*(.data)
}
_image_start = ADDR(.data);
_image_size = SIZEOF(.data);
.other :
{
*(.*)
}
}