]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/sparc64/kernel/vmlinux.lds.S
all-archs: consolidate .text section definition in asm-generic
[mirror_ubuntu-zesty-kernel.git] / arch / sparc64 / kernel / vmlinux.lds.S
CommitLineData
1da177e4
LT
1/* ld script to make UltraLinux kernel */
2
3#include <asm-generic/vmlinux.lds.h>
4
5OUTPUT_FORMAT("elf64-sparc", "elf64-sparc", "elf64-sparc")
6OUTPUT_ARCH(sparc:v9a)
7ENTRY(_start)
8
9jiffies = jiffies_64;
10SECTIONS
11{
56425306 12 swapper_low_pmd_dir = 0x0000000000402000;
1da177e4
LT
13 . = 0x4000;
14 .text 0x0000000000404000 :
15 {
fd593d12 16 _text = .;
7664709b 17 TEXT_TEXT
1da177e4
LT
18 SCHED_TEXT
19 LOCK_TEXT
05e14cb3 20 KPROBES_TEXT
1da177e4
LT
21 *(.gnu.warning)
22 } =0
23 _etext = .;
24 PROVIDE (etext = .);
25
26 RODATA
27
28 .data :
29 {
30 *(.data)
31 CONSTRUCTORS
32 }
33 .data1 : { *(.data1) }
34 . = ALIGN(64);
35 .data.cacheline_aligned : { *(.data.cacheline_aligned) }
d369ddd2
DM
36 . = ALIGN(64);
37 .data.read_mostly : { *(.data.read_mostly) }
1da177e4
LT
38 _edata = .;
39 PROVIDE (edata = .);
40 .fixup : { *(.fixup) }
41
42 . = ALIGN(16);
43 __start___ex_table = .;
44 __ex_table : { *(__ex_table) }
45 __stop___ex_table = .;
46
47 . = ALIGN(8192);
48 __init_begin = .;
49 .init.text : {
50 _sinittext = .;
51 *(.init.text)
52 _einittext = .;
53 }
54 .init.data : { *(.init.data) }
55 . = ALIGN(16);
56 __setup_start = .;
57 .init.setup : { *(.init.setup) }
58 __setup_end = .;
59 __initcall_start = .;
60 .initcall.init : {
61ce1efe 61 INITCALLS
1da177e4
LT
62 }
63 __initcall_end = .;
64 __con_initcall_start = .;
65 .con_initcall.init : { *(.con_initcall.init) }
66 __con_initcall_end = .;
67 SECURITY_INIT
517af332 68 . = ALIGN(4);
d257d5da
DM
69 __tsb_ldquad_phys_patch = .;
70 .tsb_ldquad_phys_patch : { *(.tsb_ldquad_phys_patch) }
71 __tsb_ldquad_phys_patch_end = .;
517af332
DM
72 __tsb_phys_patch = .;
73 .tsb_phys_patch : { *(.tsb_phys_patch) }
74 __tsb_phys_patch_end = .;
92704a1c
DM
75 __cpuid_patch = .;
76 .cpuid_patch : { *(.cpuid_patch) }
77 __cpuid_patch_end = .;
df7d6aec
DM
78 __sun4v_1insn_patch = .;
79 .sun4v_1insn_patch : { *(.sun4v_1insn_patch) }
80 __sun4v_1insn_patch_end = .;
81 __sun4v_2insn_patch = .;
82 .sun4v_2insn_patch : { *(.sun4v_2insn_patch) }
83 __sun4v_2insn_patch_end = .;
67d38229
JPS
84
85#ifdef CONFIG_BLK_DEV_INITRD
1da177e4
LT
86 . = ALIGN(8192);
87 __initramfs_start = .;
88 .init.ramfs : { *(.init.ramfs) }
89 __initramfs_end = .;
67d38229
JPS
90#endif
91
1da177e4
LT
92 . = ALIGN(8192);
93 __per_cpu_start = .;
94 .data.percpu : { *(.data.percpu) }
95 __per_cpu_end = .;
96 . = ALIGN(8192);
97 __init_end = .;
98 __bss_start = .;
99 .sbss : { *(.sbss) *(.scommon) }
100 .bss :
101 {
102 *(.dynbss)
103 *(.bss)
104 *(COMMON)
105 }
106 _end = . ;
107 PROVIDE (end = .);
1da177e4 108 /DISCARD/ : { *(.exit.text) *(.exit.data) *(.exitcall.exit) }
d5784b57
DM
109
110 STABS_DEBUG
111
112 DWARF_DEBUG
1da177e4 113}