xref: /kvm-unit-tests/x86/flat.lds (revision 6afb94812d924a754e2d44f6c5de9e1859b2df28)
1SECTIONS
2{
3    . = 4M + SIZEOF_HEADERS;
4    stext = .;
5    .text : { *(.init) *(.text) *(.text.*) }
6    etext = .;
7    . = ALIGN(4K);
8    .data : {
9          *(.data)
10          exception_table_start = .;
11          *(.data.ex)
12	  exception_table_end = .;
13	  }
14    . = ALIGN(16);
15    .rodata : { *(.rodata) }
16    . = ALIGN(16);
17    .bss : { *(.bss) }
18    . = ALIGN(4K);
19    edata = .;
20}
21
22ENTRY(start)
23