]> rtime.felk.cvut.cz Git - l4.git/blob - kernel/fiasco/src/boot/amd64/bootstrap.ld
update
[l4.git] / kernel / fiasco / src / boot / amd64 / bootstrap.ld
1 FORCE_COMMON_ALLOCATION
2 SECTIONS
3 {
4   .text : 
5     {
6       *(.init)
7       *(.text .text.* .gnu.linkonce.t.*)
8       *(.fini)
9       *(.rodata .rodata.* .gnu.linkonce.r.*)
10       *(.data .data.* .gnu.linkonce.d.*)
11       *(.anno)
12     } = 0x90909090
13
14   .bss :
15     {
16       *(.bss .gnu.linkonce.b.* COMMON)
17     }
18
19 }