repo.or.cz
/
qemu
/
ar7.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
block/nvme: Introduce Completion Queue definitions
[qemu/ar7.git]
/
tests
/
tcg
/
alpha
/
system
/
kernel.ld
blob
d2ac6ecfeb8a6c76bece7656c2441b7da692f245
1
ENTRY(_start)
2
3
SECTIONS
4
{
5
/* Linux kernel legacy start address. */
6
. = 0xfffffc0000310000;
7
_text = .;
8
.text : {
9
*(.text)
10
}
11
.rodata : {
12
*(.rodata)
13
}
14
_etext = .;
15
16
. = ALIGN(8192);
17
_data = .;
18
.got : {
19
*(.got)
20
}
21
.data : {
22
*(.sdata)
23
*(.data)
24
}
25
_edata = .;
26
.bss : {
27
*(.bss)
28
}
29
_end = .;
30
}