Merge commit 'v2.6.27-rc8' into x86/setup
[deliverable/linux.git] / arch / sparc64 / kernel / vmlinux.lds.S
CommitLineData
1da177e4
LT
1/* ld script to make UltraLinux kernel */
2
4096b46f 3#include <asm/page.h>
1da177e4
LT
4#include <asm-generic/vmlinux.lds.h>
5
6OUTPUT_FORMAT("elf64-sparc", "elf64-sparc", "elf64-sparc")
7OUTPUT_ARCH(sparc:v9a)
8ENTRY(_start)
9
10jiffies = jiffies_64;
11SECTIONS
12{
72be7e54
SR
13 swapper_low_pmd_dir = 0x0000000000402000;
14 . = 0x4000;
15 .text 0x0000000000404000 : {
16 _text = .;
17 TEXT_TEXT
18 SCHED_TEXT
19 LOCK_TEXT
20 KPROBES_TEXT
21 *(.gnu.warning)
22 } = 0
23 _etext = .;
24 PROVIDE (etext = .);
1da177e4 25
72be7e54
SR
26 RO_DATA(PAGE_SIZE)
27 .data : {
28 DATA_DATA
29 CONSTRUCTORS
30 }
31 .data1 : {
32 *(.data1)
33 }
34 . = ALIGN(64);
35 .data.cacheline_aligned : {
36 *(.data.cacheline_aligned)
37 }
38 . = ALIGN(64);
39 .data.read_mostly : {
40 *(.data.read_mostly)
41 }
42 _edata = .;
43 PROVIDE (edata = .);
44 .fixup : {
45 *(.fixup)
46 }
47 . = ALIGN(16);
48 __ex_table : {
49 __start___ex_table = .;
50 *(__ex_table)
51 __stop___ex_table = .;
52 }
53 NOTES
1da177e4 54
72be7e54
SR
55 . = ALIGN(PAGE_SIZE);
56 .init.text : {
57 __init_begin = .;
58 _sinittext = .;
01ba2bdc 59 INIT_TEXT
72be7e54
SR
60 _einittext = .;
61 }
62 .init.data : {
01ba2bdc 63 INIT_DATA
72be7e54
SR
64 }
65 . = ALIGN(16);
66 .init.setup : {
67 __setup_start = .;
68 *(.init.setup)
69 __setup_end = .;
70 }
71 .initcall.init : {
72 __initcall_start = .;
73 INITCALLS
74 __initcall_end = .;
75 }
76 .con_initcall.init : {
77 __con_initcall_start = .;
78 *(.con_initcall.init)
79 __con_initcall_end = .;
80 }
81 SECURITY_INIT
1da177e4 82
72be7e54
SR
83 . = ALIGN(4);
84 .tsb_ldquad_phys_patch : {
85 __tsb_ldquad_phys_patch = .;
86 *(.tsb_ldquad_phys_patch)
87 __tsb_ldquad_phys_patch_end = .;
88 }
1da177e4 89
72be7e54
SR
90 .tsb_phys_patch : {
91 __tsb_phys_patch = .;
92 *(.tsb_phys_patch)
93 __tsb_phys_patch_end = .;
94 }
0c0d345e 95
72be7e54
SR
96 .cpuid_patch : {
97 __cpuid_patch = .;
98 *(.cpuid_patch)
99 __cpuid_patch_end = .;
100 }
101
102 .sun4v_1insn_patch : {
103 __sun4v_1insn_patch = .;
104 *(.sun4v_1insn_patch)
105 __sun4v_1insn_patch_end = .;
106 }
107 .sun4v_2insn_patch : {
108 __sun4v_2insn_patch = .;
109 *(.sun4v_2insn_patch)
110 __sun4v_2insn_patch_end = .;
111 }
67d38229
JPS
112
113#ifdef CONFIG_BLK_DEV_INITRD
72be7e54
SR
114 . = ALIGN(PAGE_SIZE);
115 .init.ramfs : {
116 __initramfs_start = .;
117 *(.init.ramfs)
118 __initramfs_end = .;
119 }
67d38229
JPS
120#endif
121
72be7e54 122 PERCPU(PAGE_SIZE)
5fb7dc37 123
72be7e54
SR
124 . = ALIGN(PAGE_SIZE);
125 __init_end = .;
126 __bss_start = .;
127 .sbss : {
128 *(.sbss)
129 *(.scommon)
130 }
131 .bss : {
132 *(.dynbss)
133 *(.bss)
134 *(COMMON)
135 }
136 _end = . ;
137 PROVIDE (end = .);
d5784b57 138
72be7e54 139 /DISCARD/ : {
01ba2bdc
SR
140 EXIT_TEXT
141 EXIT_DATA
72be7e54
SR
142 *(.exitcall.exit)
143 }
d5784b57 144
72be7e54
SR
145 STABS_DEBUG
146 DWARF_DEBUG
1da177e4 147}
This page took 0.452325 seconds and 5 git commands to generate.