blob: c520138818f23446d1f69a56b580bef5fee0419a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
if VENDOR_IWILL
choice
prompt "Mainboard model"
config BOARD_IWILL_DK8_HTX
bool "DK8-HTX"
config BOARD_IWILL_DK8S2
bool "DK8S2"
config BOARD_IWILL_DK8X
bool "DK8X"
endchoice
source "src/mainboard/iwill/dk8_htx/Kconfig"
source "src/mainboard/iwill/dk8s2/Kconfig"
source "src/mainboard/iwill/dk8x/Kconfig"
config MAINBOARD_VENDOR
string
default "IWILL"
endif # VENDOR_IWILL
|