]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/arm/kernel/vmlinux.lds.S
linker script: throw away .discard section
[mirror_ubuntu-zesty-kernel.git] / arch / arm / kernel / vmlinux.lds.S
CommitLineData
1da177e4
LT
1/* ld script to make ARM Linux kernel
2 * taken from the i386 version by Russell King
3 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>
4 */
5
6#include <asm-generic/vmlinux.lds.h>
4f7a1812 7#include <asm/thread_info.h>
37d07b72 8#include <asm/memory.h>
1da177e4
LT
9
10OUTPUT_ARCH(arm)
11ENTRY(stext)
37d07b72 12
1da177e4
LT
13#ifndef __ARMEB__
14jiffies = jiffies_64;
15#else
16jiffies = jiffies_64 + 4;
17#endif
37d07b72 18
9d4f13e5
RK
19SECTIONS
20{
37d07b72 21#ifdef CONFIG_XIP_KERNEL
9d4f13e5 22 . = XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR);
37d07b72 23#else
9d4f13e5 24 . = PAGE_OFFSET + TEXT_OFFSET;
37d07b72 25#endif
08fdffd4 26 .text.head : {
1da177e4 27 _stext = .;
08fdffd4
RK
28 _sinittext = .;
29 *(.text.head)
30 }
31
32 .init : { /* Init code and data */
01ba2bdc 33 INIT_TEXT
08fdffd4 34 _einittext = .;
1da177e4 35 __proc_info_begin = .;
02b7dd12 36 *(.proc.info.init)
1da177e4
LT
37 __proc_info_end = .;
38 __arch_info_begin = .;
9d0fd1eb 39 *(.arch.info.init)
1da177e4
LT
40 __arch_info_end = .;
41 __tagtable_begin = .;
9506057f 42 *(.taglist.init)
1da177e4
LT
43 __tagtable_end = .;
44 . = ALIGN(16);
45 __setup_start = .;
46 *(.init.setup)
47 __setup_end = .;
48 __early_begin = .;
bfe6815e 49 *(.early_param.init)
1da177e4
LT
50 __early_end = .;
51 __initcall_start = .;
61ce1efe 52 INITCALLS
1da177e4
LT
53 __initcall_end = .;
54 __con_initcall_start = .;
55 *(.con_initcall.init)
56 __con_initcall_end = .;
57 __security_initcall_start = .;
58 *(.security_initcall.init)
59 __security_initcall_end = .;
67d38229 60#ifdef CONFIG_BLK_DEV_INITRD
1da177e4
LT
61 . = ALIGN(32);
62 __initramfs_start = .;
63 usr/built-in.o(.init.ramfs)
64 __initramfs_end = .;
67d38229 65#endif
b6e3590f 66 . = ALIGN(4096);
19390c4d 67 __per_cpu_load = .;
1da177e4 68 __per_cpu_start = .;
74e79045 69 *(.data.percpu.page_aligned)
1da177e4 70 *(.data.percpu)
5fb7dc37 71 *(.data.percpu.shared_aligned)
1da177e4
LT
72 __per_cpu_end = .;
73#ifndef CONFIG_XIP_KERNEL
74 __init_begin = _stext;
01ba2bdc 75 INIT_DATA
1da177e4
LT
76 . = ALIGN(4096);
77 __init_end = .;
78#endif
79 }
80
81 /DISCARD/ : { /* Exit code and data */
01ba2bdc
SR
82 EXIT_TEXT
83 EXIT_DATA
1da177e4 84 *(.exitcall.exit)
405d967d 85 *(.discard)
bff595c1
CM
86 *(.ARM.exidx.exit.text)
87 *(.ARM.extab.exit.text)
9641c7cc
RK
88#ifndef CONFIG_MMU
89 *(.fixup)
90 *(__ex_table)
91#endif
1da177e4
LT
92 }
93
94 .text : { /* Real text segment */
95 _text = .; /* Text and read-only data */
7ab3f8d5
RK
96 __exception_text_start = .;
97 *(.exception.text)
98 __exception_text_end = .;
7664709b 99 TEXT_TEXT
1da177e4
LT
100 SCHED_TEXT
101 LOCK_TEXT
785d3cd2 102 KPROBES_TEXT
9641c7cc 103#ifdef CONFIG_MMU
1da177e4 104 *(.fixup)
9641c7cc 105#endif
1da177e4
LT
106 *(.gnu.warning)
107 *(.rodata)
108 *(.rodata.*)
109 *(.glue_7)
110 *(.glue_7t)
111 *(.got) /* Global offset table */
112 }
113
1da177e4
LT
114 RODATA
115
116 _etext = .; /* End of text and rodata section */
117
bff595c1
CM
118#ifdef CONFIG_ARM_UNWIND
119 /*
120 * Stack unwinding tables
121 */
122 . = ALIGN(8);
123 .ARM.unwind_idx : {
124 __start_unwind_idx = .;
125 *(.ARM.exidx*)
126 __stop_unwind_idx = .;
127 }
128 .ARM.unwind_tab : {
129 __start_unwind_tab = .;
130 *(.ARM.extab*)
131 __stop_unwind_tab = .;
132 }
133#endif
134
1da177e4
LT
135#ifdef CONFIG_XIP_KERNEL
136 __data_loc = ALIGN(4); /* location in binary */
9d4f13e5 137 . = PAGE_OFFSET + TEXT_OFFSET;
1da177e4 138#else
4f7a1812 139 . = ALIGN(THREAD_SIZE);
1da177e4
LT
140 __data_loc = .;
141#endif
142
143 .data : AT(__data_loc) {
37efe642 144 _data = .; /* address in memory */
8c7e6574 145 _sdata = .;
1da177e4
LT
146
147 /*
148 * first, the init task union, aligned
149 * to an 8192 byte boundary.
150 */
4efb4482 151 *(.data.init_task)
1da177e4
LT
152
153#ifdef CONFIG_XIP_KERNEL
154 . = ALIGN(4096);
155 __init_begin = .;
01ba2bdc 156 INIT_DATA
1da177e4
LT
157 . = ALIGN(4096);
158 __init_end = .;
159#endif
160
161 . = ALIGN(4096);
162 __nosave_begin = .;
163 *(.data.nosave)
164 . = ALIGN(4096);
165 __nosave_end = .;
166
167 /*
168 * then the cacheline aligned data
169 */
170 . = ALIGN(32);
171 *(.data.cacheline_aligned)
172
13b1f64c
NP
173 /*
174 * The exception fixup table (might need resorting at runtime)
175 */
176 . = ALIGN(32);
177 __start___ex_table = .;
9641c7cc 178#ifdef CONFIG_MMU
13b1f64c 179 *(__ex_table)
9641c7cc 180#endif
13b1f64c
NP
181 __stop___ex_table = .;
182
1da177e4
LT
183 /*
184 * and the usual data section
185 */
ca967258 186 DATA_DATA
1da177e4
LT
187 CONSTRUCTORS
188
189 _edata = .;
190 }
e98ff7f6 191 _edata_loc = __data_loc + SIZEOF(.data);
1da177e4
LT
192
193 .bss : {
194 __bss_start = .; /* BSS */
195 *(.bss)
196 *(COMMON)
8c7e6574 197 __bss_stop = .;
1da177e4
LT
198 _end = .;
199 }
200 /* Stabs debugging sections. */
201 .stab 0 : { *(.stab) }
202 .stabstr 0 : { *(.stabstr) }
203 .stab.excl 0 : { *(.stab.excl) }
204 .stab.exclstr 0 : { *(.stab.exclstr) }
205 .stab.index 0 : { *(.stab.index) }
206 .stab.indexstr 0 : { *(.stab.indexstr) }
207 .comment 0 : { *(.comment) }
208}
209
728f5c07
RK
210/*
211 * These must never be empty
212 * If you have to comment these two assert statements out, your
213 * binutils is too old (for other reasons as well)
214 */
1da177e4
LT
215ASSERT((__proc_info_end - __proc_info_begin), "missing CPU support")
216ASSERT((__arch_info_end - __arch_info_begin), "no machine record defined")