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