1if TARGET_QEMU_X86 || TARGET_QEMU_X86_64
2
3config SYS_BOARD
4	default "qemu-x86"
5
6config SYS_VENDOR
7	default "emulation"
8
9config SYS_SOC
10	default "qemu"
11
12config SYS_CONFIG_NAME
13	default "qemu-x86"
14
15config SYS_TEXT_BASE
16	default 0xfff00000 if !SUPPORT_SPL
17	default 0x01110000 if SUPPORT_SPL
18
19config BOARD_SPECIFIC_OPTIONS # dummy
20	def_bool y
21	select X86_RESET_VECTOR
22	select QEMU
23	select BOARD_ROMSIZE_KB_1024
24	imply VIRTIO_PCI
25	imply VIRTIO_NET
26	imply VIRTIO_BLK
27
28endif
29