AMD IOMMU support
[seabios/amd-iommu.git] / vgasrc / vgalayout.lds.S
blob08a5f32e4802a75345a415c6f20023ae0f926137
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.
7 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
8 OUTPUT_ARCH("i386")
9 ENTRY(_optionrom_entry)
10 SECTIONS
12         .text 0 : {
13                 KEEP(*(.rom.header))
14                 *(.text.*)
15                 _rodata = . ;
16                 *(.rodata.__func__.*)
17                 *(.rodata.str1.1)
18                 *(.data16.*)
19                 }
21         // Discard regular data sections to force a link error if
22         // 16bit code attempts to access data not marked with VAR16.
23         /DISCARD/ : { *(.text*) *(.rodata*) *(.data*) *(.bss*) *(COMMON) }