xref: /netbsd-src/sys/arch/arm/conf/kern.ldscript.head (revision d25ffa98a4bfca1fe272f3c182496ec9934faac7)
1/*	$NetBSD: kern.ldscript.head,v 1.2 2005/12/11 12:16:45 christos 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