configure: Allow user to specify sphinx-build binary
[qemu.git] / tests / tcg / i386 / system / kernel.ld
blob92de525e934f73d003dc901c2dad0161fbf154fe
1 SECTIONS {
2         . = 0x100000;
4         .text : {
5                 __load_st = .;
6                 *(.head)
7                 *(.text)
8         }
10         .rodata : {
11                 *(.rodata)
12         }
14         .data : {
15                 *(.data)
16                 __load_en = .;
17         }
19         .bss : {
20                 *(.bss)
21                 __bss_en = .;
22         }