1 #include <asm-generic/vmlinux.lds.h>
3 OUTPUT_FORMAT(ELF_FORMAT)
10 /*This must contain the right address - not quite the default ELF one.*/
11 PROVIDE (__executable_start = START);
12 . = START + SIZEOF_HEADERS;
14 /* Used in arch/um/kernel/mem.c. Any memory between START and __binary_start
19 __start_thread_private = .;
22 arch/um/kernel/tt/unmap_fin.o (.data)
23 __end_thread_private = .;
26 .remap : { arch/um/kernel/tt/unmap_fin.o (.text) }
28 /* We want it only if we are in MODE_TT. In both cases, however, when MODE_TT
29 * is off the resulting binary segfaults.*/
31 . = ALIGN(4096); /* Init code and data */
48 /* .gnu.warning sections are handled specially by elf32.em. */
53 #include "asm/common.lds.S"
55 init.data : { *(init.data) }
58 . = ALIGN(KERNEL_STACK_SIZE); /* init_task */
64 .data1 : { *(.data1) }
74 .got : { *(.got.plt) *(.got) }
75 .dynamic : { *(.dynamic) }
76 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
77 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
78 /* We want the small data sections together, so single-instruction offsets
79 can access them all, and initialized data all before uninitialized, so
80 we can shorten the on-disk segment size. */
81 .sdata : { *(.sdata) }
88 PROVIDE(_bss_start = .);
100 /* Stabs debugging sections. */
101 .stab 0 : { *(.stab) }
102 .stabstr 0 : { *(.stabstr) }
103 .stab.excl 0 : { *(.stab.excl) }
104 .stab.exclstr 0 : { *(.stab.exclstr) }
105 .stab.index 0 : { *(.stab.index) }
106 .stab.indexstr 0 : { *(.stab.indexstr) }
107 .comment 0 : { *(.comment) }