1 #include <asm/vmlinux.lds.h>
4 OUTPUT_FORMAT(ELF_FORMAT)
11 PROVIDE (__executable_start = START);
12 . = START + SIZEOF_HEADERS;
13 .interp : { *(.interp) }
15 . = ALIGN(4096); /* Init code and data */
17 INIT_TEXT_SECTION(PAGE_SIZE)
21 /* Read-only sections, merged into text segment: */
23 .gnu.hash : { *(.gnu.hash) }
24 .dynsym : { *(.dynsym) }
25 .dynstr : { *(.dynstr) }
26 .gnu.version : { *(.gnu.version) }
27 .gnu.version_d : { *(.gnu.version_d) }
28 .gnu.version_r : { *(.gnu.version_r) }
29 .rel.init : { *(.rel.init) }
30 .rela.init : { *(.rela.init) }
31 .rel.text : { *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*) }
32 .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
33 .rel.fini : { *(.rel.fini) }
34 .rela.fini : { *(.rela.fini) }
35 .rel.rodata : { *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*) }
36 .rela.rodata : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
37 .rel.data : { *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*) }
38 .rela.data : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
39 .rel.tdata : { *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*) }
40 .rela.tdata : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
41 .rel.tbss : { *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*) }
42 .rela.tbss : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
43 .rel.ctors : { *(.rel.ctors) }
44 .rela.ctors : { *(.rela.ctors) }
45 .rel.dtors : { *(.rel.dtors) }
46 .rela.dtors : { *(.rela.dtors) }
47 .rel.got : { *(.rel.got) }
48 .rela.got : { *(.rela.got) }
49 .rel.bss : { *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*) }
50 .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
53 PROVIDE_HIDDEN(__rel_iplt_start = .);
55 PROVIDE_HIDDEN(__rel_iplt_end = .);
59 PROVIDE_HIDDEN(__rela_iplt_start = .);
61 PROVIDE_HIDDEN(__rela_iplt_end = .);
76 *(.stub .text.* .gnu.linkonce.t.*)
77 /* .gnu.warning sections are handled specially by elf32.em. */
84 __syscall_stub_start = .;
86 __syscall_stub_end = .;
92 .kstrtab : { *(.kstrtab) }
94 #include <asm/common.lds.S>
97 init.data : { INIT_DATA }
100 /* Ensure the __preinit_array_start label is properly aligned. We
101 could instead move the label definition inside the section, but
102 the linker would then create the section even if it turns out to
103 be empty, which isn't pretty. */
105 .preinit_array : { *(.preinit_array) }
106 .init_array : { *(.init_array) }
107 .fini_array : { *(.fini_array) }
109 INIT_TASK_DATA(KERNEL_STACK_SIZE)
110 . = ALIGN(KERNEL_STACK_SIZE);
111 *(.data..init_irqstack)
113 *(.data.* .gnu.linkonce.d.*)
116 .data1 : { *(.data1) }
117 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
118 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
119 .eh_frame : { KEEP (*(.eh_frame)) }
120 .gcc_except_table : { *(.gcc_except_table) }
121 .dynamic : { *(.dynamic) }
123 /* gcc uses crtbegin.o to find the start of
124 the constructors, so we make sure it is
125 first. Because this is a wildcard, it
126 doesn't matter if the user does not
127 actually link against crtbegin.o; the
128 linker won't look for a file to match a
129 wildcard. The wildcard also means that it
130 doesn't matter which directory crtbegin.o
132 KEEP (*crtbegin.o(.ctors))
133 /* We don't want to include the .ctor section from
134 from the crtend.o file until after the sorted ctors.
135 The .ctor section from the crtend file contains the
136 end of ctors marker and it must be last */
137 KEEP (*(EXCLUDE_FILE (*crtend.o ) .ctors))
138 KEEP (*(SORT(.ctors.*)))
142 KEEP (*crtbegin.o(.dtors))
143 KEEP (*(EXCLUDE_FILE (*crtend.o ) .dtors))
144 KEEP (*(SORT(.dtors.*)))
147 .jcr : { KEEP (*(.jcr)) }
148 .got : { *(.got.plt) *(.got) }
154 *(.bss .bss.* .gnu.linkonce.b.*)
156 /* Align here to ensure that the .bss section occupies space up to
157 _end. Align after .bss to ensure correct alignment even if the
158 .bss section disappears because there are no input sections. */