blob: ea6b18077bca0da75e25d378c19090913fc2e6bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
if VENDOR_EMULATION
choice
prompt "Mainboard model"
config BOARD_EMULATION_QEMU_X86
bool "QEMU x86"
config BOARD_EMULATION_QEMU_ARMV7
bool "QEMU armv7 (vexpress-a9)"
endchoice
source "src/mainboard/emulation/qemu-x86/Kconfig"
source "src/mainboard/emulation/qemu-armv7/Kconfig"
config MAINBOARD_VENDOR
string
default "Emulation"
endif # VENDOR_EMULATION
|