summaryrefslogtreecommitdiffstats
path: root/stand/i386/boot.ldscript
blob: 04ea39d476938208d9dabc0280e7172918f00a60 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* $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 = .;
}
OpenPOWER on IntegriCloud