kern.ldscript.head revision 1.4
11.4Smatt/*	$NetBSD: kern.ldscript.head,v 1.4 2012/09/01 12:17:04 matt Exp $	*/
21.1Schs
31.1SchsOUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
41.1Schs	      "elf32-littlearm")
51.1SchsOUTPUT_ARCH(arm)
61.1SchsSECTIONS
71.1Schs{
81.1Schs  . = 0xf0000020;	/* 0x20 == sizeof(a.out header) */
91.1Schs
101.1Schs  /* Read-only sections, merged into text segment: */
111.1Schs  .text :
121.1Schs  {
131.1Schs    *(.text)
141.1Schs    *(.text.*)
151.4Smatt    __stub_start = .;
161.1Schs    *(.stub)
171.4Smatt    __stub_end = .;
181.1Schs    *(.glue_7t) *(.glue_7)
191.1Schs    *(.rodata) *(.rodata.*)
20