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
Merge tag 'pull-loongarch-20241016' of https://gitlab.com/gaosong/qemu into staging
[qemu/armbru.git]
/
tests
/
tcg
/
x86_64
/
system
/
kernel.ld
blob
ca5d6bd8509db6161e79314901f3014afb4c0a77
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
/DISCARD/ : {
20
*(.note.gnu*)
21
}
22
23
.notes : {
24
*(.note.*)
25
} :note
26
27
.data : {
28
*(.data)
29
__load_en = .;
30
} :text
31
32
.bss : {
33
*(.bss)
34
__bss_en = .;
35
}
36
}