18 lines
397 B
Plaintext
18 lines
397 B
Plaintext
/* $NetBSD: kern.ldscript.head,v 1.2 2005/12/11 12:16:45 christos Exp $ */
|
|
|
|
OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
|
|
"elf32-littlearm")
|
|
OUTPUT_ARCH(arm)
|
|
SECTIONS
|
|
{
|
|
. = 0xf0000020; /* 0x20 == sizeof(a.out header) */
|
|
|
|
/* Read-only sections, merged into text segment: */
|
|
.text :
|
|
{
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.stub)
|
|
*(.glue_7t) *(.glue_7)
|
|
*(.rodata) *(.rodata.*)
|