kern.ldscript.head revision 1.1
1/*	$NetBSD: kern.ldscript.head,v 1.1 2004/09/13 09:39:40 chs Exp $	*/
2
3OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
4	      "elf32-littlearm")
5OUTPUT_ARCH(arm)
6SECTIONS
7{
8  . = 0xf0000020;	/* 0x20 == sizeof(a.out header) */
9
10  /* Read-only sections, merged into text segment: */
11  .text :
12  {
13    *(.text)
14    *(.text.*)
15    *(.stub)
16    *(.glue_7t) *(.glue_7)
17    *(.rodata) *(.rodata.*)
18