blob: 9fb477b9db5e31bda43e25c815b363018a7dbfc0 (
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
|
if VENDOR_PCENGINES
choice
prompt "Mainboard model"
config BOARD_PCENGINES_ALIX1C
bool "ALIX.1C"
config BOARD_PCENGINES_ALIX2C
bool "ALIX.2C2 or 2C3"
config BOARD_PCENGINES_ALIX2D
bool "ALIX.2D2 or 2D3"
config BOARD_PCENGINES_ALIX6
bool "ALIX.6"
endchoice
source "src/mainboard/pcengines/alix1c/Kconfig"
source "src/mainboard/pcengines/alix2c/Kconfig"
source "src/mainboard/pcengines/alix2d/Kconfig"
source "src/mainboard/pcengines/alix6/Kconfig"
config MAINBOARD_VENDOR
string
default "PC Engines"
endif # VENDOR_PCENGINES
|