blob: 51aed14df1987a570b4cb39c1b0cfcfc1b421ae9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/* $OpenBSD: ld.script,v 1.1 2005/04/01 10:40:48 mickey Exp $ */
OUTPUT_FORMAT("elf64-hppa")
OUTPUT_ARCH(hppa2.0w)
ENTRY(begin)
SECTIONS {
/* Read-only sections, merged into text segment: */
. = + SIZEOF_HEADERS;
.text : {
*(.text)
*(.text.*)
*(.rodata)
*(.rodata1)
*($CODE$)
etext = .;
} = 0x08000240
/* Read-write sections, merged into data segment: */
.data : {
$global$ = .;
*(.data)
*(.data1)
*(.sdata)
*(.sdata2)
*(.dynamic)
CONSTRUCTORS
edata = ABSOLUTE(.);
} = 0
.opd : { *(.opd) }
PROVIDE(__gp = .);
.plt : { *(.plt) }
.dlt : { *(.dlt) }
.bss : {
__bss_start = .;
*(.dynbss)
*(.bss)
*(.sbss)
*(.scommon)
*(COMMON)
end = ABSOLUTE(.);
__bss_end = .;
}
/* don't need an unwind in the boot, unless we'll have a boot-ddb (; */
/DISCARD/ :
{
*(.PARISC.unwind)
*(.exitcall.exit)
*(.interp)
*(.dynsym)
*(.dynstr)
*(.dynamic)
*(.hash)
*(.stub)
}
}
|