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 : { UNMAP_PATH (.data .bss) }
20 .remap : { UNMAP_PATH (.text) }
22 . = ALIGN(4096); /* Init code and data */
40 /* .gnu.warning sections are handled specially by elf32.em. */
45 __syscall_stub_start = .;
47 __syscall_stub_end = .;
51 #include "asm/common.lds.S"
53 init.data : { *(init.data) }
56 . = ALIGN(KERNEL_STACK_SIZE); /* init_task */
62 .data1 : { *(.data1) }
72 .got : { *(.got.plt) *(.got) }
73 .dynamic : { *(.dynamic) }
74 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
75 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
76 /* We want the small data sections together, so single-instruction offsets
77 can access them all, and initialized data all before uninitialized, so
78 we can shorten the on-disk segment size. */
79 .sdata : { *(.sdata) }
86 PROVIDE(_bss_start = .);