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>
6 #include <asm-generic/vmlinux.lds.h>
7 #include <asm/thread_info.h>
8 #include <asm/memory.h>
16 jiffies = jiffies_64 + 4;
21 #ifdef CONFIG_XIP_KERNEL
22 . = XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR);
24 . = PAGE_OFFSET + TEXT_OFFSET;
32 .init : { /* Init code and data */
35 __proc_info_begin = .;
38 __arch_info_begin = .;
54 __con_initcall_start = .;
56 __con_initcall_end = .;
57 __security_initcall_start = .;
58 *(.security_initcall.init)
59 __security_initcall_end = .;
60 #ifdef CONFIG_BLK_DEV_INITRD
62 __initramfs_start = .;
63 usr/built-in.o(.init.ramfs)
69 *(.data.percpu.page_aligned)
71 *(.data.percpu.shared_aligned)
73 #ifndef CONFIG_XIP_KERNEL
74 __init_begin = _stext;
81 /DISCARD/ : { /* Exit code and data */
85 *(.ARM.exidx.exit.text)
86 *(.ARM.extab.exit.text)
87 #ifndef CONFIG_HOTPLUG_CPU
88 *(.ARM.exidx.cpuexit.text)
89 *(.ARM.extab.cpuexit.text)
91 #ifndef CONFIG_HOTPLUG
92 *(.ARM.exidx.devexit.text)
93 *(.ARM.extab.devexit.text)
101 .text : { /* Real text segment */
102 _text = .; /* Text and read-only data */
103 __exception_text_start = .;
105 __exception_text_end = .;
118 *(.got) /* Global offset table */
123 _etext = .; /* End of text and rodata section */
125 #ifdef CONFIG_ARM_UNWIND
127 * Stack unwinding tables
131 __start_unwind_idx = .;
133 __stop_unwind_idx = .;
136 __start_unwind_tab = .;
138 __stop_unwind_tab = .;
142 #ifdef CONFIG_XIP_KERNEL
143 __data_loc = ALIGN(4); /* location in binary */
144 . = PAGE_OFFSET + TEXT_OFFSET;
146 . = ALIGN(THREAD_SIZE);
150 .data : AT(__data_loc) {
151 _data = .; /* address in memory */
155 * first, the init task union, aligned
156 * to an 8192 byte boundary.
160 #ifdef CONFIG_XIP_KERNEL
175 * then the cacheline aligned data
178 *(.data.cacheline_aligned)
181 * The exception fixup table (might need resorting at runtime)
184 __start___ex_table = .;
188 __stop___ex_table = .;
191 * and the usual data section
198 _edata_loc = __data_loc + SIZEOF(.data);
201 __bss_start = .; /* BSS */
207 /* Stabs debugging sections. */
208 .stab 0 : { *(.stab) }
209 .stabstr 0 : { *(.stabstr) }
210 .stab.excl 0 : { *(.stab.excl) }
211 .stab.exclstr 0 : { *(.stab.exclstr) }
212 .stab.index 0 : { *(.stab.index) }
213 .stab.indexstr 0 : { *(.stab.indexstr) }
214 .comment 0 : { *(.comment) }
218 * These must never be empty
219 * If you have to comment these two assert statements out, your
220 * binutils is too old (for other reasons as well)
222 ASSERT((__proc_info_end - __proc_info_begin), "missing CPU support")
223 ASSERT((__arch_info_end - __arch_info_begin), "no machine record defined")