]> git.ipfire.org Git - thirdparty/u-boot.git/blob - board/emulation/qemu-x86/Kconfig
Merge patch series "Resolve issues with booting distros on x86"
[thirdparty/u-boot.git] / board / emulation / qemu-x86 / Kconfig
1 if TARGET_QEMU_X86 || TARGET_QEMU_X86_64
2
3 config SYS_BOARD
4 default "qemu-x86"
5
6 config SYS_VENDOR
7 default "emulation"
8
9 config SYS_SOC
10 default "qemu"
11
12 config TEXT_BASE
13 default 0xfff00000 if !SUPPORT_SPL
14 default 0x01110000 if SUPPORT_SPL
15
16 config BOARD_SPECIFIC_OPTIONS # dummy
17 def_bool y
18 select X86_RESET_VECTOR
19 select QEMU
20 select QFW_PIO if CMD_QFW
21 select BOARD_ROMSIZE_KB_1024 if TARGET_QEMU_X86
22 select BOARD_ROMSIZE_KB_2048 if TARGET_QEMU_X86_64
23 imply VIRTIO_PCI
24 imply VIRTIO_NET
25 imply VIRTIO_BLK
26
27 endif