]> git.proxmox.com Git - mirror_qemu.git/blame - tests/multiboot/link.ld
pseries: Enforce homogeneous threads-per-core
[mirror_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}