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 .remap_data : { arch/um/sys-SUBARCH/unmap_fin.o (.data .bss) }
20 .remap : { arch/um/sys-SUBARCH/unmap_fin.o (.text) }
22 . = ALIGN(4096); /* Init code and data */
39 /* .gnu.warning sections are handled specially by elf32.em. */
44 #include "asm/common.lds.S"
46 init.data : { *(init.data) }
49 . = ALIGN(KERNEL_STACK_SIZE); /* init_task */
55 .data1 : { *(.data1) }
65 .got : { *(.got.plt) *(.got) }
66 .dynamic : { *(.dynamic) }
67 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
68 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
69 /* We want the small data sections together, so single-instruction offsets
70 can access them all, and initialized data all before uninitialized, so
71 we can shorten the on-disk segment size. */
72 .sdata : { *(.sdata) }
79 PROVIDE(_bss_start = .);
91 /* Stabs debugging sections. */
92 .stab 0 : { *(.stab) }
93 .stabstr 0 : { *(.stabstr) }
94 .stab.excl 0 : { *(.stab.excl) }
95 .stab.exclstr 0 : { *(.stab.exclstr) }
96 .stab.index 0 : { *(.stab.index) }
97 .stab.indexstr 0 : { *(.stab.indexstr) }
98 .comment 0 : { *(.comment) }