1 /* $NetBSD: kern.ldscript,v 1.6 2006/12/02 04:49:37 christos Exp $ */
3 OUTPUT_FORMAT("elf32-i386", "elf32-i386",
9 /* Read-only sections, merged into text segment: */
11 AT (ADDR(.text) & 0x0fffffff)
21 AT (LOADADDR(.text) + (ADDR(.rodata) - ADDR(.text)))
27 /* Adjust the address for the data segment. We want to adjust up to
28 the same address within the page on the next page up. */
29 . = ALIGN(0x1000) + (. & (0x1000 - 1));
32 AT (LOADADDR(.text) + (ADDR(.data) - ADDR(.text)))
41 AT (LOADADDR(.text) + (ADDR(.bss) - ADDR(.text)))
53 KEEP(*(.note.netbsd.ident));