vendorcode/eltan/Kconfig: Hide the Kconfig options when lacking support
The vendorcode/eltan mboot and verified boot options only build if a few other Kconfig options are defined. Change-Id: Ie333d2fbf294e23ec01df06ee551e2d09541c744 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35954 Reviewed-by: Wim Vervoorn Reviewed-by: Michał Żygowski <michal.zygowski@3mdeb.com> Reviewed-by: Frans Hendriks <fhendriks@eltan.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
894240d362
commit
cbe5357de0
|
@ -30,6 +30,7 @@ config BOARD_SPECIFIC_OPTIONS
|
||||||
select DISABLE_HPET
|
select DISABLE_HPET
|
||||||
select INTEL_GMA_HAVE_VBT
|
select INTEL_GMA_HAVE_VBT
|
||||||
select GENERIC_SPD_BIN
|
select GENERIC_SPD_BIN
|
||||||
|
select USE_VENDORCODE_ELTAN
|
||||||
|
|
||||||
config ONBOARD_SAMSUNG_MEM
|
config ONBOARD_SAMSUNG_MEM
|
||||||
bool "Onboard memory manufacturer Samsung"
|
bool "Onboard memory manufacturer Samsung"
|
||||||
|
|
|
@ -13,5 +13,10 @@
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
##
|
##
|
||||||
|
|
||||||
|
config USE_VENDORCODE_ELTAN
|
||||||
|
bool
|
||||||
|
|
||||||
|
if USE_VENDORCODE_ELTAN
|
||||||
source src/vendorcode/eltan/security/mboot/Kconfig
|
source src/vendorcode/eltan/security/mboot/Kconfig
|
||||||
source src/vendorcode/eltan/security/verified_boot/Kconfig
|
source src/vendorcode/eltan/security/verified_boot/Kconfig
|
||||||
|
endif
|
||||||
|
|
Loading…
Reference in New Issue