2 * ld script to make SuperH Linux kernel
3 * Written by Niibe Yutaka
5 #include <asm/thread_info.h>
7 #include <asm-generic/vmlinux.lds.h>
9 #ifdef CONFIG_CPU_LITTLE_ENDIAN
10 OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", "elf32-sh-linux")
12 OUTPUT_FORMAT("elf32-shbig-linux", "elf32-shbig-linux", "elf32-shbig-linux")
18 . = CONFIG_PAGE_OFFSET + CONFIG_MEMORY_START + CONFIG_ZERO_PAGE_OFFSET;
19 _text = .; /* Text and read-only data */
35 . = ALIGN(16); /* Exception table */
36 __start___ex_table = .;
37 __ex_table : { *(__ex_table) }
38 __stop___ex_table = .;
40 _etext = .; /* End of text section */
46 . = ALIGN(THREAD_SIZE);
50 . = ALIGN(L1_CACHE_BYTES);
51 *(.data.cacheline_aligned)
53 . = ALIGN(L1_CACHE_BYTES);
68 _edata = .; /* End of data section */
70 . = ALIGN(PAGE_SIZE); /* Init code and data */
73 .init.text : { *(.init.text) }
75 .init.data : { *(.init.data) }
79 .init.setup : { *(.init.setup) }
87 __con_initcall_start = .;
88 .con_initcall.init : { *(.con_initcall.init) }
89 __con_initcall_end = .;
93 #ifdef CONFIG_BLK_DEV_INITRD
95 __initramfs_start = .;
96 .init.ramfs : { *(.init.ramfs) }
102 .machvec.init : { *(.machvec.init) }
108 * .exit.text is discarded at runtime, not link time, to deal with
109 * references from __bug_table
111 .exit.text : { *(.exit.text) }
112 .exit.data : { *(.exit.data) }
114 . = ALIGN(PAGE_SIZE);
117 __bss_start = .; /* BSS */
122 _ebss = .; /* uClinux MTD sucks */
127 * When something in the kernel is NOT compiled as a module, the
128 * module cleanup code and data are put into these segments. Both
129 * can then be thrown away, as cleanup code is never called unless