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>
12 __init_begin = .; /* Init code and data */
14 __proc_info_begin = .;
17 __arch_info_begin = .;
36 /DISCARD/ : { /* Exit code and data */
43 _text = .; /* Text and read-only data */
47 *(.text.lock) /* out-of-line lock text */
50 . = ALIGN(16); /* Exception table */
51 __start___ex_table = .;
53 __stop___ex_table = .;
55 __start___ksymtab = .; /* Kernel symbol table */
59 *(.got) /* Global offset table */
61 _etext = .; /* End of text section */
66 * The cacheline aligned data
69 *(.data.cacheline_aligned)
72 * and the usual data section
82 __bss_start = .; /* BSS */
88 /* Stabs debugging sections. */
89 .stab 0 : { *(.stab) }
90 .stabstr 0 : { *(.stabstr) }
91 .stab.excl 0 : { *(.stab.excl) }
92 .stab.exclstr 0 : { *(.stab.exclstr) }
93 .stab.index 0 : { *(.stab.index) }
94 .stab.indexstr 0 : { *(.stab.indexstr) }
95 .comment 0 : { *(.comment) }