1 /* ld script to make s390 Linux kernel
2 * Written by Martin Schwidefsky (schwidefsky@de.ibm.com)
5 #include <asm-generic/vmlinux.lds.h>
6 #include <linux/config.h>
9 OUTPUT_FORMAT("elf32-s390", "elf32-s390", "elf32-s390")
12 jiffies = jiffies_64 + 4;
14 OUTPUT_FORMAT("elf64-s390", "elf64-s390", "elf64-s390")
15 OUTPUT_ARCH(s390:64-bit)
23 _text = .; /* Text and read-only data */
32 _etext = .; /* End of text section */
34 . = ALIGN(16); /* Exception table */
35 __start___ex_table = .;
36 __ex_table : { *(__ex_table) }
37 __stop___ex_table = .;
41 #ifdef CONFIG_SHARED_KERNEL
42 . = ALIGN(1048576); /* VM shared segments are 1MB aligned */
44 _eshared = .; /* End of shareable data */
54 .data_nosave : { *(.data.nosave) }
59 .data.page_aligned : { *(.data.idt) }
62 .data.cacheline_aligned : { *(.data.cacheline_aligned) }
65 .data.read_mostly : { *(.data.read_mostly) }
66 _edata = .; /* End of data section */
68 . = ALIGN(8192); /* init_task */
69 .data.init_task : { *(.data.init_task) }
71 /* will be freed after init */
72 . = ALIGN(4096); /* Init code and data */
79 .init.data : { *(.init.data) }
82 .init.setup : { *(.init.setup) }
95 __con_initcall_start = .;
96 .con_initcall.init : { *(.con_initcall.init) }
97 __con_initcall_end = .;
100 __initramfs_start = .;
101 .init.ramfs : { *(.init.initramfs) }
106 .data.percpu : { *(.data.percpu) }
110 /* freed after init ends here */
112 __bss_start = .; /* BSS */
119 /* Sections to be discarded */
124 /* Stabs debugging sections. */
125 .stab 0 : { *(.stab) }
126 .stabstr 0 : { *(.stabstr) }
127 .stab.excl 0 : { *(.stab.excl) }
128 .stab.exclstr 0 : { *(.stab.exclstr) }
129 .stab.index 0 : { *(.stab.index) }
130 .stab.indexstr 0 : { *(.stab.indexstr) }
131 .comment 0 : { *(.comment) }