repo.or.cz
/
qemu
/
armbru.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
qapi/error: Check format string argument in error_*prepend()
[qemu/armbru.git]
/
tests
/
tcg
/
x86_64
/
system
/
kernel.ld
blob
49c12b04ae12124bcff489aecc826f062fdb7f35
1
PHDRS {
2
text PT_LOAD FLAGS(5); /* R_E */
3
note PT_NOTE FLAGS(0); /* ___ */
4
}
5
6
SECTIONS {
7
. = 0x100000;
8
9
.text : {
10
__load_st = .;
11
*(.head)
12
*(.text)
13
} :text
14
15
.rodata : {
16
*(.rodata)
17
} :text
18
19
/* Keep build ID and PVH notes in same section */
20
.notes : {
21
*(.note.*)
22
} :note
23
24
.data : {
25
*(.data)
26
__load_en = .;
27
} :text
28
29
.bss : {
30
*(.bss)
31
__bss_en = .;
32
}
33
}