20 lines
435 B
Plaintext
20 lines
435 B
Plaintext
/* $NetBSD: kern.ldscript.head,v 1.4 2012/09/01 12:17:04 matt 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_start = .;
|
|
*(.stub)
|
|
__stub_end = .;
|
|
*(.glue_7t) *(.glue_7)
|
|
*(.rodata) *(.rodata.*)
|