36224b479b
CS5536, ITE IT8712F). Board support is based on the SpaceRunner-LX (with tiny bits from the RoadRunner-LX) even though the hardware really was the ancestor of our three other -LX boards and in fact among the earliest Geode-LX boards on the market. (Might even have been the first Geode-LX EPIC?) Signed-off-by: Jens Rottmann <JRottmann@LiPPERTEmbedded.de> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5801 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
29 lines
705 B
Text
29 lines
705 B
Text
if VENDOR_LIPPERT
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
|
|
config BOARD_LIPPERT_FRONTRUNNER
|
|
bool "Cool Frontrunner"
|
|
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"
|
|
|
|
endchoice
|
|
|
|
source "src/mainboard/lippert/frontrunner/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"
|
|
|
|
config MAINBOARD_VENDOR
|
|
string
|
|
default "Lippert"
|
|
|
|
endif # VENDOR_LIPPERT
|