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
/
arm
/
system
/
kernel.ld
blob
7b3a76dcbf35d4f00920262783de2dd12c06c66e
1
ENTRY(__start)
2
3
SECTIONS
4
{
5
/* virt machine, RAM starts at 1gb */
6
. = (1 << 30);
7
.text : {
8
*(.text)
9
}
10
.rodata : {
11
*(.rodata)
12
}
13
/* align r/w section to next 2mb */
14
. = ALIGN(1 << 21);
15
.data : {
16
*(.data)
17
}
18
.bss : {
19
*(.bss)
20
}
21
/DISCARD/ : {
22
*(.ARM.attributes)
23
}
24
}