xref: /kvm-unit-tests/arm/flat.lds (revision 39ac3f8494beb048a121f44bf626275b18c66da5)
1
2SECTIONS
3{
4    .text : { *(.init) *(.text) *(.text.*) }
5    . = ALIGN(4K);
6    .data : {
7        exception_stacks = .;
8        . += 4K;
9        exception_stacks_end = .;
10        *(.data)
11    }
12    . = ALIGN(16);
13    .rodata : { *(.rodata) }
14    . = ALIGN(16);
15    .bss : { *(.bss) }
16    . = ALIGN(4K);
17    edata = .;
18    . += 8K;
19    . = ALIGN(4K);
20    stacktop = .;
21}
22
23ENTRY(start)
24