freebsd-dev/stand/i386/boot.ldscript
2017-11-14 23:02:19 +00:00

12 lines
324 B
Plaintext

/* $FreeBSD$ */
/* Merge text, data and bss together almost no padding */
OUTPUT_FORMAT("elf32-i386-freebsd")
OUTPUT_ARCH(i386)
ENTRY(_start)
SECTIONS {
. = 0x08048000 + SIZEOF_HEADERS;
.text : { *(.text) } =0x90909090 /* Pad with nops, if needed */
.data : { *(.data) } _edata = .;
.bss : { *(.bss) } _end = .;
}