repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP FPC-III support
[linux/fpc-iii.git]
/
arch
/
h8300
/
boot
/
compressed
/
vmlinux.lds
blob
7f7bb419ce153adc8435c8faa786e381e6a70ee7
1
/* SPDX-License-Identifier: GPL-2.0 */
2
SECTIONS
3
{
4
.text :
5
{
6
__stext = . ;
7
__text = .;
8
*(.text..startup)
9
*(.text)
10
__etext = . ;
11
}
12
13
.rodata :
14
{
15
*(.rodata)
16
}
17
. = ALIGN(0x4) ;
18
.data :
19
20
{
21
. = ALIGN(0x4) ;
22
__sdata = . ;
23
___data_start = . ;
24
*(.data.*)
25
}
26
. = ALIGN(0x4) ;
27
.bss :
28
{
29
__sbss = . ;
30
*(.bss*)
31
. = ALIGN(0x4) ;
32
__ebss = . ;
33
}
34
_end = . ;
35
}