blob: 5f596b87c00d3fd312600da753437ec8376ffb2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
## SPDX-License-Identifier: GPL-2.0-only
# ugly to put it in here, but unavoidable
config SEPARATE_ROMSTAGE
default n if BOARD_EMULATION_QEMU_RISCV
if VENDOR_EMULATION
choice
prompt "Mainboard model"
default BOARD_EMULATION_QEMU_X86_I440FX
source "src/mainboard/emulation/*/Kconfig.name"
endchoice
source "src/mainboard/emulation/*/Kconfig"
config MAINBOARD_VENDOR
default "Emulation"
endif # VENDOR_EMULATION
|