Paz Zcharya has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/86563?usp=email )
Change subject: chromeos/Kconfig: BMP_LOGO only if using FSP ......................................................................
chromeos/Kconfig: BMP_LOGO only if using FSP
Currently, CHROMEOS_FW_SPLASH_SCREEN selects BMP_LOGO and HAVE_CUSTOME_BMP_LOGO, which are both defined in src/drivers/intel/fsp2_0/Kconfig. Since they are intel/fsp2_0 specific, change the selection to be conditional on the use of PLATFORM_USES_FSP2_0.
BUG=b:398621376 TEST=Compile Google/Rex and Google/Rauru
Change-Id: Ic1d5118401981917d86e09b4b3d2bab5af052d6e Signed-off-by: Paz Zcharya pazz@google.com --- M src/vendorcode/google/chromeos/Kconfig 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/63/86563/1
diff --git a/src/vendorcode/google/chromeos/Kconfig b/src/vendorcode/google/chromeos/Kconfig index 60f48fe..934ea9b 100644 --- a/src/vendorcode/google/chromeos/Kconfig +++ b/src/vendorcode/google/chromeos/Kconfig @@ -82,8 +82,8 @@ config CHROMEOS_FW_SPLASH_SCREEN bool "Display Splash Screen in firmware" default n - select BMP_LOGO - select HAVE_CUSTOM_BMP_LOGO + select BMP_LOGO if PLATFORM_USES_FSP2_0 + select HAVE_CUSTOM_BMP_LOGO if PLATFORM_USES_FSP2_0 help Select this option to display the manufacturer's logo or custom image (OEM splash screen) early in the boot process.