f592c08b68
According to vendor (Pascal Dornier) they're the same from coreboot perspective. Change-Id: I43aeb77f21c251b3d9c5c2dcfa01d4d1de0bc87b Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/5114 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
26 lines
537 B
Text
26 lines
537 B
Text
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
|