summaryrefslogtreecommitdiff
path: root/src/mainboard/emulation/Kconfig
blob: a1ee02d54e54b7904c50f9247ecab211270b6572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
if VENDOR_EMULATION

choice
	prompt "Mainboard model"

config BOARD_EMULATION_QEMU_X86_I440FX
	bool "QEMU x86 i440fx/piix4 (aka qemu -M pc)"

config BOARD_EMULATION_QEMU_X86_Q35
	bool "QEMU x86 q35/ich9 (aka qemu -M q35, since v1.4)"

config BOARD_EMULATION_QEMU_ARMV7
	bool "QEMU armv7 (vexpress-a9)"

config BOARD_EMULATION_QEMU_UCB_RISCV
	bool "QEMU ucb riscv"

endchoice

config BOARD_EMULATION_QEMU_X86
	bool
	default y
	depends on BOARD_EMULATION_QEMU_X86_I440FX || BOARD_EMULATION_QEMU_X86_Q35

source "src/mainboard/emulation/qemu-i440fx/Kconfig"
source "src/mainboard/emulation/qemu-q35/Kconfig"
source "src/mainboard/emulation/qemu-armv7/Kconfig"
source "src/mainboard/emulation/qemu-riscv/Kconfig"

config MAINBOARD_VENDOR
	string
	default "Emulation"

endif # VENDOR_EMULATION