blob: bfec632e6622de222f9714b68a32c6f0b35630b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $NetBSD: kern.ldscript.head,v 1.5 2015/08/23 08:57:24 uebayasi Exp $ */
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.*)
|