1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * (C) Copyright 2003, Psyent Corporation <www.psyent.com>
4 * Scott McNutt <smcnutt@psyent.com>
5 */
6
7
8OUTPUT_FORMAT("elf32-sparc", "elf32-sparc", "elf32-sparc")
9OUTPUT_ARCH(sparc)
10ENTRY(_start)
11
12SECTIONS
13{
14	.text :
15	{
16	  *(.text)
17	}
18	__text_end = .;
19
20	. = ALIGN(4);
21	.rodata :
22	{
23		*(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
24	}
25	__rodata_end = .;
26
27	. = ALIGN(4);
28	.data :
29	{
30		*(.data)
31	}
32
33	. = ALIGN(4);
34	__data_end = .;
35
36	__bss_start = .;
37	. = ALIGN(4);
38	.bss :
39	{
40		*(.bss)
41	}
42	. = ALIGN(4);
43	__bss_end = .;
44	_end = .;
45}
46