virtio-gpu: fix crashes upon warm reboot with vga mode
[qemu/ar7.git] / tests / multiboot / link.ld
blob3d49b58c60c6c15a0705958df72087a74ceabc67
1 ENTRY(_start)
3 SECTIONS
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     }