1 /* ld script to make s390 Linux kernel
2 * Written by Martin Schwidefsky (schwidefsky@de.ibm.com)
5 #include <asm/thread_info.h>
9 * Put .bss..swapper_pg_dir as the first thing in .bss. This will
10 * make sure it has 16k alignment.
12 #define BSS_FIRST_SECTIONS *(.bss..swapper_pg_dir)
14 /* Handle ro_after_init data on our own. */
15 #define RO_AFTER_INIT_DATA
17 #include <asm-generic/vmlinux.lds.h>
19 OUTPUT_FORMAT("elf64-s390", "elf64-s390", "elf64-s390")
20 OUTPUT_ARCH(s390:64-bit)
25 text PT_LOAD FLAGS(5); /* R_E */
26 data PT_LOAD FLAGS(7); /* RWE */
27 note PT_NOTE FLAGS(0); /* ___ */
34 _text = .; /* Text and read-only data */
47 _etext = .; /* End of text section */
51 .dummy : { *(.dummy) } :data
53 RO_DATA_SECTION(PAGE_SIZE)
55 #ifdef CONFIG_SHARED_KERNEL
56 . = ALIGN(0x100000); /* VM shared segments are 1MB aligned */
60 _eshared = .; /* End of shareable data */
61 _sdata = .; /* Start of data section */
64 __start_ro_after_init = .;
65 __start_data_ro_after_init = .;
66 .data..ro_after_init : {
67 *(.data..ro_after_init)
69 __end_data_ro_after_init = .;
72 __end_ro_after_init = .;
74 RW_DATA_SECTION(0x100, PAGE_SIZE, THREAD_SIZE)
76 _edata = .; /* End of data section */
78 /* will be freed after init */
79 . = ALIGN(PAGE_SIZE); /* Init code and data */
82 INIT_TEXT_SECTION(PAGE_SIZE)
85 * .exit.text is discarded at runtime, not link time,
86 * to deal with references from __bug_table
96 /* early.c uses stsi, which requires page aligned data. */
98 INIT_DATA_SECTION(0x100)
100 PERCPU_SECTION(0x100)
101 . = ALIGN(PAGE_SIZE);
102 __init_end = .; /* freed after init ends here */
104 BSS_SECTION(PAGE_SIZE, 4 * PAGE_SIZE, PAGE_SIZE)
108 /* Debugging sections. */
112 /* Sections to be discarded */