]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/i386/boot.ldscript
stand: Add 1440p to the list of known resolutions.
[FreeBSD/FreeBSD.git] / stand / i386 / boot.ldscript
1 /* Simplified linker script for the boot loaders. */
2 OUTPUT_FORMAT("elf32-i386-freebsd")
3 OUTPUT_ARCH(i386)
4 ENTRY(_start)
5 SECTIONS {
6   . = ORG;
7   .text : { *(.text .text.*) } =0xcccccccc      /* Pad with int3, if needed */
8   .rodata : { *(.rodata .rodata.*) }
9   .got : { *(.got) *(.igot) }
10   .got.plt : { *(.got.plt) *(.igot.plt) }
11   .data : { *(.data .data.*) }
12   _edata = .; PROVIDE (edata = .);
13   .bss : { *(.bss .bss.*) }
14   _end = .; PROVIDE (end = .);
15   /DISCARD/ : { *(.interp) }
16 }