4026b034f1
Originally developed by LiPPERT and after the acquisition marketed as 'LiPPERT by ADLINK', the plan is now to streamline both boards into the ADLINK naming scheme. But AFAIK a few have already been sold and as of this writing the website still advertises the old names. And in any case the veteran LX products will continue to be sold by ADLINK under their original names. So create CONFIG_VENDOR_ADLINK, currently only telling users to look under LiPPERT (however any future boards will be added here). Further add an explanation to CONFIG_VENDOR_LIPPERT, and in the Mainboard model selection show both names. Change-Id: Iaafa88533ef4cce33243293c3d55754e7e93d003 Signed-off-by: Jens Rottmann <JRottmann@LiPPERTembedded.de> Reviewed-on: http://review.coreboot.org/3046 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
37 lines
1,010 B
Text
37 lines
1,010 B
Text
if VENDOR_LIPPERT
|
|
|
|
comment "was acquired by ADLINK"
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
|
|
config BOARD_LIPPERT_FRONTRUNNER
|
|
bool "Cool FrontRunner"
|
|
config BOARD_LIPPERT_FRONTRUNNER_AF
|
|
bool "FrontRunner-AF aka ADLINK CoreModule2-GF"
|
|
config BOARD_LIPPERT_HURRICANE_LX
|
|
bool "Hurricane-LX"
|
|
config BOARD_LIPPERT_LITERUNNER_LX
|
|
bool "Cool LiteRunner-LX"
|
|
config BOARD_LIPPERT_ROADRUNNER_LX
|
|
bool "Cool RoadRunner-LX"
|
|
config BOARD_LIPPERT_SPACERUNNER_LX
|
|
bool "Cool SpaceRunner-LX"
|
|
config BOARD_LIPPERT_TOUCAN_AF
|
|
bool "Toucan-AF aka cExpress-GFR (+W83627DHG SIO)"
|
|
|
|
endchoice
|
|
|
|
source "src/mainboard/lippert/frontrunner/Kconfig"
|
|
source "src/mainboard/lippert/frontrunner-af/Kconfig"
|
|
source "src/mainboard/lippert/hurricane-lx/Kconfig"
|
|
source "src/mainboard/lippert/literunner-lx/Kconfig"
|
|
source "src/mainboard/lippert/roadrunner-lx/Kconfig"
|
|
source "src/mainboard/lippert/spacerunner-lx/Kconfig"
|
|
source "src/mainboard/lippert/toucan-af/Kconfig"
|
|
|
|
config MAINBOARD_VENDOR
|
|
string
|
|
default "LiPPERT"
|
|
|
|
endif # VENDOR_LIPPERT
|