blob: 884214b2ece4d9aa1ad7ecb8245feca68a24ad02 (
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
|
##
## This file is part of the coreboot project.
##
##
## SPDX-License-Identifier: GPL-2.0-only
if VENDOR_BAP
choice
prompt "Mainboard model"
source "src/mainboard/bap/*/Kconfig.name"
config BAP_BOARDS_DISABLED
bool "Boards from vendor are disabled"
endchoice
source "src/mainboard/bap/*/Kconfig"
config MAINBOARD_VENDOR
default "BAP"
endif # VENDOR_BAP
|