]> git.proxmox.com Git - mirror_qemu.git/blame - tests/multiboot/link.ld
Merge tag '20231119-xtensa-1' of https://github.com/OSLL/qemu-xtensa into staging
[mirror_qemu.git] / tests / multiboot / link.ld
CommitLineData
d1f3a23b
KW
1ENTRY(_start)
2
3SECTIONS
4{
5 . = 0x100000;
6078a0b6 6 .text : AT(ADDR(.text)) {
d1f3a23b
KW
7 *(multiboot)
8 *(.text)
9 }
6078a0b6 10 .data ALIGN(4096) : AT(ADDR(.data)) {
d1f3a23b
KW
11 *(.data)
12 }
6078a0b6 13 .rodata ALIGN(4096) : AT(ADDR(.rodata)) {
d1f3a23b
KW
14 *(.rodata)
15 }
16 .bss ALIGN(4096) : {
17 *(.bss)
18 }
19}