kern.ldscript.head revision 1.3
1/*	$NetBSD: kern.ldscript.head,v 1.3 2012/08/29 22:43:57 matt 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_start = .
16    *(.stub)
17    __stub_end = .
18    *(.glue_7t) *(.glue_7)
19    *(.rodata) *(.rodata.*)
20