]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
c2f02da2 DH |
2 | /* |
3 | * (C) Copyright 2003, Psyent Corporation <www.psyent.com> | |
4 | * Scott McNutt <[email protected]> | |
c2f02da2 DH |
5 | */ |
6 | ||
7 | ||
8 | OUTPUT_FORMAT("elf32-sparc", "elf32-sparc", "elf32-sparc") | |
9 | OUTPUT_ARCH(sparc) | |
10 | ENTRY(_start) | |
11 | ||
12 | SECTIONS | |
13 | { | |
14 | .text : | |
15 | { | |
16 | *(.text) | |
17 | } | |
18 | __text_end = .; | |
19 | ||
20 | . = ALIGN(4); | |
21 | .rodata : | |
22 | { | |
f62fb999 | 23 | *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) |
c2f02da2 DH |
24 | } |
25 | __rodata_end = .; | |
26 | ||
27 | . = ALIGN(4); | |
28 | .data : | |
29 | { | |
30 | *(.data) | |
31 | } | |
55675142 | 32 | |
c2f02da2 DH |
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 = .; | |
7ec830d5 | 44 | _end = .; |
c2f02da2 | 45 | } |