2018-05-07 05:58:06 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2008-03-28 16:47:00 +08:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2003, Psyent Corporation <www.psyent.com>
|
|
|
|
* Scott McNutt <smcnutt@psyent.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
OUTPUT_FORMAT("elf32-sparc", "elf32-sparc", "elf32-sparc")
|
|
|
|
OUTPUT_ARCH(sparc)
|
|
|
|
ENTRY(_start)
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.text :
|
|
|
|
{
|
|
|
|
*(.text)
|
|
|
|
}
|
|
|
|
__text_end = .;
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
.rodata :
|
|
|
|
{
|
2009-02-19 07:22:05 +08:00
|
|
|
*(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
|
2008-03-28 16:47:00 +08:00
|
|
|
}
|
|
|
|
__rodata_end = .;
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
.data :
|
|
|
|
{
|
|
|
|
*(.data)
|
|
|
|
}
|
2012-10-12 18:27:03 +08:00
|
|
|
|
2008-03-28 16:47:00 +08:00
|
|
|
. = ALIGN(4);
|
|
|
|
__data_end = .;
|
|
|
|
|
|
|
|
__bss_start = .;
|
|
|
|
. = ALIGN(4);
|
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
*(.bss)
|
|
|
|
}
|
|
|
|
. = ALIGN(4);
|
|
|
|
__bss_end = .;
|
2011-03-29 20:34:50 +08:00
|
|
|
_end = .;
|
2008-03-28 16:47:00 +08:00
|
|
|
}
|