1 /* $Id: vmlinux.lds.S,v 1.8 2003/05/16 17:18:14 lethal Exp $
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 */
20 text = .; /* Text and read-only data */
32 . = ALIGN(16); /* Exception table */
33 __start___ex_table = .;
34 __ex_table : { *(__ex_table) }
35 __stop___ex_table = .;
37 _etext = .; /* End of text section */
46 /* Align the initial ramdisk image (INITRD) on page boundaries. */
57 .data.page_aligned : { *(.data.page_aligned) }
59 .data_nosave : { *(.data.nosave) }
64 .data.cacheline_aligned : { *(.data.cacheline_aligned) }
66 _edata = .; /* End of data section */
68 . = ALIGN(THREAD_SIZE); /* init_task */
69 .data.init_task : { *(.data.init_task) }
71 . = ALIGN(PAGE_SIZE); /* Init code and data */
74 .init.text : { *(.init.text) }
76 .init.data : { *(.init.data) }
79 .init.setup : { *(.init.setup) }
86 __con_initcall_start = .;
87 .con_initcall.init : { *(.con_initcall.init) }
88 __con_initcall_end = .;
91 #ifdef CONFIG_BLK_DEV_INITRD
92 __initramfs_start = .;
93 .init.ramfs : { *(.init.ramfs) }
99 .machvec.init : { *(.machvec.init) }
102 . = ALIGN(PAGE_SIZE);
105 __bss_start = .; /* BSS */
112 /* When something in the kernel is NOT compiled as a module, the
113 * module cleanup code and data are put into these segments. Both
114 * can then be thrown away, as cleanup code is never called unless