]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/i386/boot.ldscript
sys/{x86,amd64}: remove one of doubled ;s
[FreeBSD/FreeBSD.git] / stand / i386 / boot.ldscript
1 /* $FreeBSD$ */
2 /* Merge text, data and bss together almost no padding */
3 OUTPUT_FORMAT("elf32-i386-freebsd")
4 OUTPUT_ARCH(i386)
5 ENTRY(_start)
6 SECTIONS {
7   . = 0x08048000 + SIZEOF_HEADERS;
8   .text : { *(.text) } =0x90909090      /* Pad with nops, if needed */
9   .data : { *(.data) } _edata = .;
10   .bss  : { *(.bss) }  _end = .;
11 }