projects
/
oweals
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
km/scripts: search for kernel/DTBs at serverip:/PRODUCTNAME via TFTP in develop mode
[oweals/u-boot.git]
/
examples
/
standalone
/
sparc.lds
1
/*
2
* (C) Copyright 2003, Psyent Corporation <www.psyent.com>
3
* Scott McNutt <smcnutt@psyent.com>
4
*
5
* SPDX-License-Identifier: GPL-2.0+
6
*/
7
8
9
OUTPUT_FORMAT("elf32-sparc", "elf32-sparc", "elf32-sparc")
10
OUTPUT_ARCH(sparc)
11
ENTRY(_start)
12
13
SECTIONS
14
{
15
.text :
16
{
17
*(.text)
18
}
19
__text_end = .;
20
21
. = ALIGN(4);
22
.rodata :
23
{
24
*(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
25
}
26
__rodata_end = .;
27
28
. = ALIGN(4);
29
.data :
30
{
31
*(.data)
32
}
33
34
. = ALIGN(4);
35
__data_end = .;
36
37
__bss_start = .;
38
. = ALIGN(4);
39
.bss :
40
{
41
*(.bss)
42
}
43
. = ALIGN(4);
44
__bss_end = .;
45
_end = .;
46
}