1 /* ld script to make s390 Linux kernel
2 * Written by Martin Schwidefsky (schwidefsky@de.ibm.com)
6 #include <asm-generic/vmlinux.lds.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)
21 text PT_LOAD FLAGS(5); /* R_E */
22 data PT_LOAD FLAGS(7); /* RWE */
23 note PT_NOTE FLAGS(0); /* ___ */
30 _text = .; /* Text and read-only data */
40 _etext = .; /* End of text section */
46 #ifdef CONFIG_SHARED_KERNEL
47 . = ALIGN(0x100000); /* VM shared segments are 1MB aligned */
51 _eshared = .; /* End of shareable data */
53 . = ALIGN(16); /* Exception table */
55 __start___ex_table = .;
57 __stop___ex_table = .;
74 .data.page_aligned : {
79 .data.cacheline_aligned : {
80 *(.data.cacheline_aligned)
87 _edata = .; /* End of data section */
89 . = ALIGN(2 * PAGE_SIZE); /* init_task */
94 /* will be freed after init */
95 . = ALIGN(PAGE_SIZE); /* Init code and data */
103 * .exit.text is discarded at runtime, not link time,
104 * to deal with references from __bug_table
120 __initcall_start = .;
125 .con_initcall.init : {
126 __con_initcall_start = .;
127 *(.con_initcall.init)
128 __con_initcall_end = .;
132 #ifdef CONFIG_BLK_DEV_INITRD
135 __initramfs_start = .;
143 . = ALIGN(PAGE_SIZE);
144 __init_end = .; /* freed after init ends here */
156 /* Sections to be discarded */
162 /* Debugging sections. */