git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
24 lines
226 B
Plaintext
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 :
|
|
{
|
|
*(.*)
|
|
}
|
|
}
|