]> rtime.felk.cvut.cz Git - jailhouse-test.git/blob - bootstrap-relink/bootstrap32.ld
9c192556bf7c6e582decdb3855b8bba2b2fe3028
[jailhouse-test.git] / bootstrap-relink / bootstrap32.ld
1 ENTRY(_start)
2 SECTIONS
3 {
4   . =  0x00000000;
5   _image_start = .;
6   .text :
7   {
8     *(.text .text.*)
9     *(.rodata .rodata.*)
10   } =0x9090
11
12   .data :
13   {
14     *(.data .data.*)
15     *(.bss .bss.*)
16     *(COMMON)
17   }
18   _image_end = .;
19
20   /* Value of DEFAULT_RELOC_amd64 */
21   .sixtyfour 0x2d0000 :
22   {
23     . = . + 500000;
24   }
25
26   /DISCARD/ : {
27     *(.note.gnu.build-id)
28     *(.interp)
29     *(.comment)
30     *(.note)
31     *(.eh_frame)
32   }
33 }