mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
1f21d2bde0
Signed-off-by: Brian Murphy <brian@murphy.dk> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
23 lines
225 B
Text
23 lines
225 B
Text
OUTPUT_ARCH(mips)
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*(.text.start)
|
|
}
|
|
|
|
/* Data in ROM */
|
|
|
|
.data ALIGN(0x10) :
|
|
{
|
|
*(.data)
|
|
}
|
|
_image_start = ADDR(.data);
|
|
_image_size = SIZEOF(.data);
|
|
|
|
.other :
|
|
{
|
|
*(.*)
|
|
}
|
|
}
|