]> Git Repo - qemu.git/blame - tests/multiboot/link.ld
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging
[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.088832 seconds and 4 git commands to generate.