1 /* ld script to make i386 Linux kernel
2 * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>;
4 * Don't define absolute symbols until and unless you know that symbol
5 * value is should remain constant even if kernel image is relocated
6 * at run time. Absolute symbols are not relocated. If symbol value should
7 * change if kernel is relocated, make the symbol section relative and
8 * put it inside the section definition.
11 /* Don't define absolute symbols until and unless you know that symbol
12 * value is should remain constant even if kernel image is relocated
13 * at run time. Absolute symbols are not relocated. If symbol value should
14 * change if kernel is relocated, make the symbol section relative and
15 * put it inside the section definition.
17 #define LOAD_OFFSET __PAGE_OFFSET
19 #include <asm-generic/vmlinux.lds.h>
20 #include <asm/thread_info.h>
22 #include <asm/cache.h>
25 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
27 ENTRY(phys_startup_32)
32 text PT_LOAD FLAGS(5); /* R_E */
33 data PT_LOAD FLAGS(7); /* RWE */
34 note PT_NOTE FLAGS(4); /* R__ */
38 . = LOAD_OFFSET + LOAD_PHYSICAL_ADDR;
39 phys_startup_32 = startup_32 - LOAD_OFFSET;
41 .text : AT(ADDR(.text) - LOAD_OFFSET) {
42 _text = .; /* Text and read-only data */
49 _etext = .; /* End of text section */
52 . = ALIGN(16); /* Exception table */
53 __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
54 __start___ex_table = .;
56 __stop___ex_table = .;
64 .tracedata : AT(ADDR(.tracedata) - LOAD_OFFSET) {
65 __tracedata_start = .;
72 .data : AT(ADDR(.data) - LOAD_OFFSET) { /* Data */
77 .paravirtprobe : AT(ADDR(.paravirtprobe) - LOAD_OFFSET) {
78 __start_paravirtprobe = .;
80 __stop_paravirtprobe = .;
84 .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) {
92 .data.page_aligned : AT(ADDR(.data.page_aligned) - LOAD_OFFSET) {
97 .data.cacheline_aligned : AT(ADDR(.data.cacheline_aligned) - LOAD_OFFSET) {
98 *(.data.cacheline_aligned)
101 /* rarely changed data like cpu maps */
103 .data.read_mostly : AT(ADDR(.data.read_mostly) - LOAD_OFFSET) {
105 _edata = .; /* End of data section */
108 . = ALIGN(THREAD_SIZE); /* init_task */
109 .data.init_task : AT(ADDR(.data.init_task) - LOAD_OFFSET) {
113 /* might get freed after init */
115 .smp_altinstructions : AT(ADDR(.smp_altinstructions) - LOAD_OFFSET) {
117 __smp_alt_instructions = .;
118 *(.smp_altinstructions)
119 __smp_alt_instructions_end = .;
122 .smp_locks : AT(ADDR(.smp_locks) - LOAD_OFFSET) {
127 .smp_altinstr_replacement : AT(ADDR(.smp_altinstr_replacement) - LOAD_OFFSET) {
128 *(.smp_altinstr_replacement)
131 /* will be freed after init
132 * Following ALIGN() is required to make sure no other data falls on the
133 * same page where __smp_alt_end is pointing as that page might be freed
134 * after boot. Always make sure that ALIGN() directive is present after
135 * the section which contains __smp_alt_end.
139 /* will be freed after init */
140 . = ALIGN(4096); /* Init code and data */
141 .init.text : AT(ADDR(.init.text) - LOAD_OFFSET) {
147 .init.data : AT(ADDR(.init.data) - LOAD_OFFSET) { *(.init.data) }
149 .init.setup : AT(ADDR(.init.setup) - LOAD_OFFSET) {
154 .initcall.init : AT(ADDR(.initcall.init) - LOAD_OFFSET) {
155 __initcall_start = .;
159 .con_initcall.init : AT(ADDR(.con_initcall.init) - LOAD_OFFSET) {
160 __con_initcall_start = .;
161 *(.con_initcall.init)
162 __con_initcall_end = .;
166 .altinstructions : AT(ADDR(.altinstructions) - LOAD_OFFSET) {
167 __alt_instructions = .;
169 __alt_instructions_end = .;
171 .altinstr_replacement : AT(ADDR(.altinstr_replacement) - LOAD_OFFSET) {
172 *(.altinstr_replacement)
175 .parainstructions : AT(ADDR(.parainstructions) - LOAD_OFFSET) {
176 __start_parainstructions = .;
178 __stop_parainstructions = .;
180 /* .exit.text is discard at runtime, not link time, to deal with references
181 from .altinstructions and .eh_frame */
182 .exit.text : AT(ADDR(.exit.text) - LOAD_OFFSET) { *(.exit.text) }
183 .exit.data : AT(ADDR(.exit.data) - LOAD_OFFSET) { *(.exit.data) }
184 #if defined(CONFIG_BLK_DEV_INITRD)
186 .init.ramfs : AT(ADDR(.init.ramfs) - LOAD_OFFSET) {
187 __initramfs_start = .;
192 . = ALIGN(L1_CACHE_BYTES);
193 .data.percpu : AT(ADDR(.data.percpu) - LOAD_OFFSET) {
199 /* freed after init ends here */
201 .bss : AT(ADDR(.bss) - LOAD_OFFSET) {
203 __bss_start = .; /* BSS */
209 /* This is where the kernel creates the early boot page tables */
214 /* Sections to be discarded */