1 #include <asm/vmlinux.lds.h>
4 OUTPUT_FORMAT(ELF_FORMAT)
17 PROVIDE (__executable_start = START);
18 . = START + SIZEOF_HEADERS;
19 .interp : { *(.interp) }
21 . = ALIGN(4096); /* Init code and data */
23 INIT_TEXT_SECTION(PAGE_SIZE)
27 /* Read-only sections, merged into text segment: */
29 .gnu.hash : { *(.gnu.hash) }
30 .dynsym : { *(.dynsym) }
31 .dynstr : { *(.dynstr) }
32 .gnu.version : { *(.gnu.version) }
33 .gnu.version_d : { *(.gnu.version_d) }
34 .gnu.version_r : { *(.gnu.version_r) }
35 .rel.init : { *(.rel.init) }
36 .rela.init : { *(.rela.init) }
37 .rel.text : { *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*) }
38 .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
39 .rel.fini : { *(.rel.fini) }
40 .rela.fini : { *(.rela.fini) }
41 .rel.rodata : { *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*) }
42 .rela.rodata : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
43 .rel.data : { *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*) }
44 .rela.data : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
45 .rel.tdata : { *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*) }
46 .rela.tdata : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
47 .rel.tbss : { *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*) }
48 .rela.tbss : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
49 .rel.ctors : { *(.rel.ctors) }
50 .rela.ctors : { *(.rela.ctors) }
51 .rel.dtors : { *(.rel.dtors) }
52 .rela.dtors : { *(.rela.dtors) }
53 .rel.got : { *(.rel.got) }
54 .rela.got : { *(.rela.got) }
55 .rel.bss : { *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*) }
56 .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
59 PROVIDE_HIDDEN(__rel_iplt_start = .);
61 PROVIDE_HIDDEN(__rel_iplt_end = .);
65 PROVIDE_HIDDEN(__rela_iplt_start = .);
67 PROVIDE_HIDDEN(__rela_iplt_end = .);
81 *(.stub .text.* .gnu.linkonce.t.*)
82 /* .gnu.warning sections are handled specially by elf32.em. */
89 __syscall_stub_start = .;
91 __syscall_stub_end = .;
97 .kstrtab : { *(.kstrtab) }
99 #include <asm/common.lds.S>
102 init.data : { INIT_DATA }
105 /* Ensure the __preinit_array_start label is properly aligned. We
106 could instead move the label definition inside the section, but
107 the linker would then create the section even if it turns out to
108 be empty, which isn't pretty. */
110 .preinit_array : { *(.preinit_array) }
116 .fini_array : { *(.fini_array) }
118 INIT_TASK_DATA(KERNEL_STACK_SIZE)
120 *(.data.* .gnu.linkonce.d.*)
123 .data1 : { *(.data1) }
124 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
125 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
126 .eh_frame : { KEEP (*(.eh_frame)) }
127 .gcc_except_table : { *(.gcc_except_table) }
128 .dynamic : { *(.dynamic) }
130 /* gcc uses crtbegin.o to find the start of
131 the constructors, so we make sure it is
132 first. Because this is a wildcard, it
133 doesn't matter if the user does not
134 actually link against crtbegin.o; the
135 linker won't look for a file to match a
136 wildcard. The wildcard also means that it
137 doesn't matter which directory crtbegin.o
139 KEEP (*crtbegin.o(.ctors))
140 /* We don't want to include the .ctor section from
141 from the crtend.o file until after the sorted ctors.
142 The .ctor section from the crtend file contains the
143 end of ctors marker and it must be last */
144 KEEP (*(EXCLUDE_FILE (*crtend.o ) .ctors))
145 KEEP (*(SORT(.ctors.*)))
149 KEEP (*crtbegin.o(.dtors))
150 KEEP (*(EXCLUDE_FILE (*crtend.o ) .dtors))
151 KEEP (*(SORT(.dtors.*)))
154 .jcr : { KEEP (*(.jcr)) }
155 .got : { *(.got.plt) *(.got) }
161 *(.bss .bss.* .gnu.linkonce.b.*)
163 /* Align here to ensure that the .bss section occupies space up to
164 _end. Align after .bss to ensure correct alignment even if the
165 .bss section disappears because there are no input sections. */
180 ASSERT(__syscall_stub_end - __syscall_stub_start <= PAGE_SIZE,
181 "STUB code must not be larger than one page");