]> Git Repo - qemu.git/blame - tests/multiboot/link.ld
iotests: Add preallocated growth test for qcow2
[qemu.git] / tests / multiboot / link.ld
CommitLineData
d1f3a23b
KW
1ENTRY(_start)
2
3SECTIONS
4{
5 . = 0x100000;
6 .text : {
7 *(multiboot)
8 *(.text)
9 }
10 .data ALIGN(4096) : {
11 *(.data)
12 }
13 .rodata ALIGN(4096) : {
14 *(.rodata)
15 }
16 .bss ALIGN(4096) : {
17 *(.bss)
18 }
19}
This page took 0.185639 seconds and 4 git commands to generate.