2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2008-03-28 08:47:00 +00: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-18 23:22:05 +00:00
|
|
|
*(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
|
2008-03-28 08:47:00 +00:00
|
|
|
}
|
|
|
|
__rodata_end = .;
|
|
|
|
|
|
|
|
. = ALIGN(4);
|
|
|
|
.data :
|
|
|
|
{
|
|
|
|
*(.data)
|
|
|
|
}
|
2012-10-12 10:27:03 +00:00
|
|
|
|
2008-03-28 08:47:00 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
__data_end = .;
|
|
|
|
|
|
|
|
__bss_start = .;
|
|
|
|
. = ALIGN(4);
|
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
*(.bss)
|
|
|
|
}
|
|
|
|
. = ALIGN(4);
|
|
|
|
__bss_end = .;
|
2011-03-29 12:34:50 +00:00
|
|
|
_end = .;
|
2008-03-28 08:47:00 +00:00
|
|
|
}
|