mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
a3dddd560e
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 :
|
|
{
|
|
*(.*)
|
|
}
|
|
}
|