blob: f821458fa6acf5306fcf9b280654f918bef67637 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Bin Menga65b25d2015-05-07 21:34:08 +08002#
3# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Menga65b25d2015-05-07 21:34:08 +08004
5if VENDOR_EMULATION
6
7choice
8 prompt "Mainboard model"
9
10config TARGET_QEMU_X86
11 bool "QEMU x86"
12 help
13 This is the QEMU emulated x86 board. U-Boot supports running
14 as a coreboot payload as well as bare boot without coreboot.
15 There are two types of x86 boards supported by QEMU which are
16 supported by U-Boot. They are via QEMU '-M pc', an i440FX/PIIX
17 chipset platform and '-M q35', a Q35/ICH9 chipset platform.
18
Bin Mengbda40d52017-01-18 03:33:04 -080019config TARGET_QEMU_X86_64
20 bool "QEMU x86 64-bit"
21 help
22 This is the QEMU emulated x86 64-bit board. With this config
23 U-Boot is built as a 64-bit binary. This allows testing while
24 this feature is being completed.
25
Bin Menga65b25d2015-05-07 21:34:08 +080026endchoice
27
28source "board/emulation/qemu-x86/Kconfig"
29
30endif