Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / seabios / vgasrc / vgalayout.lds.S
1 // Linker definitions for an option rom
2 //
3 // Copyright (C) 2009  Kevin O'Connor <kevin@koconnor.net>
4 //
5 // This file may be distributed under the terms of the GNU LGPLv3 license.
6
7 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
8 OUTPUT_ARCH("i386")
9 ENTRY(_optionrom_entry)
10 SECTIONS
11 {
12         .text 0 : {
13                 KEEP(*(.rom.header))
14                 *(.text.*)
15                 _rodata = . ;
16                 *(.rodata*)
17                 *(.data16.*)
18                 }
19
20         // Discard regular data sections to force a link error if
21         // 16bit code attempts to access data not marked with VAR16.
22         /DISCARD/ : { *(.text*) *(.rodata*) *(.data*) *(.bss*) *(COMMON) }
23 }