mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00
Signed-off-by: Brian Murphy <brian@murphy.dk> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
24 lines
225 B
Plaintext
24 lines
225 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 :
|
|
{
|
|
*(.*)
|
|
}
|
|
}
|