repo.or.cz
/
kvm-userspace.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
kvm: qemu: LSI SCSI and e1000 unregister callbacks
[kvm-userspace.git]
/
bios
/
rombios32.ld
blob
4f8fcc315e32716dbf4adbfcfbab0ad27269edd5
1
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
2
OUTPUT_ARCH(i386)
3
ENTRY(_start);
4
SECTIONS
5
{
6
. = 0x00040000;
7
.text : { *(.text) }
8
.rodata : { *(.rodata) }
9
. = ALIGN(64);
10
fixup_start = .;
11
.fixup : { *(.fixup) }
12
fixup_end = .;
13
. = ALIGN(4096);
14
.data : { *(.data) }
15
__bss_start = . ;
16
.bss : { *(.bss) *(COMMON) }
17
_end = . ;
18
/DISCARD/ : { *(.stab)
19
*(.stabstr)
20
*(.comment)
21
*(.note)
22
}
23
}