aboutsummaryrefslogtreecommitdiff
path: root/kvm/user/flat.lds
blob: ff9693c929c6db03d663b3009a582c418c5dd631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
OUTPUT_FORMAT(binary)

SECTIONS
{
    . = 1M;
    stext = .;
    .text : { *(.init) *(.text) *(.text.*) }
    . = ALIGN(4K);
    .data : { *(.data) }
    . = ALIGN(16);
    .bss : { *(.bss) }
    . = ALIGN(4K);
    edata = .;
    end_of_memory = 128M;
}