5878bbd935
There is no Cache As Ram for these boards, let's get rid of them. Also drop unused dependencies Change-Id: I94782da521c32ade7891ada29d3013cbab32a48b Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/7836 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
38 lines
973 B
Text
38 lines
973 B
Text
if VENDOR_SUPERMICRO
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
|
|
config BOARD_SUPERMICRO_H8DME
|
|
bool "H8DME-2"
|
|
config BOARD_SUPERMICRO_H8DMR
|
|
bool "H8DMR-i2"
|
|
config BOARD_SUPERMICRO_H8DMR_FAM10
|
|
bool "H8DMR-i2 (Fam10)"
|
|
config BOARD_SUPERMICRO_H8QME_FAM10
|
|
bool "H8QME-2+ (Fam10)"
|
|
config BOARD_SUPERMICRO_H8SCM_FAM10
|
|
bool "H8SCM (Fam10)"
|
|
config BOARD_SUPERMICRO_H8SCM
|
|
bool "H8SCM"
|
|
config BOARD_SUPERMICRO_H8QGI
|
|
bool "H8QGI"
|
|
config BOARD_SUPERMICRO_X7DB8
|
|
bool "X7DB8 / X7DB8+"
|
|
|
|
endchoice
|
|
|
|
source "src/mainboard/supermicro/h8dme/Kconfig"
|
|
source "src/mainboard/supermicro/h8dmr/Kconfig"
|
|
source "src/mainboard/supermicro/h8dmr_fam10/Kconfig"
|
|
source "src/mainboard/supermicro/h8qme_fam10/Kconfig"
|
|
source "src/mainboard/supermicro/h8scm_fam10/Kconfig"
|
|
source "src/mainboard/supermicro/h8scm/Kconfig"
|
|
source "src/mainboard/supermicro/h8qgi/Kconfig"
|
|
source "src/mainboard/supermicro/x7db8/Kconfig"
|
|
|
|
config MAINBOARD_VENDOR
|
|
string
|
|
default "Supermicro"
|
|
|
|
endif # VENDOR_SUPERMICRO
|