{drivers, lib}: Rename FSP*_LOGO_FILE_NAME to BMP_LOGO_FILE_NAME
This commit standardizes the Kconfig option for the boot logo file name across FSP drivers and the common library. The `FSP1_1_LOGO_FILE_NAME` and `FSP2_0_LOGO_FILE_NAME` options are renamed to `BMP_LOGO_FILE_NAME`. BUG=b:400738815 TEST=Able to build and boot google/brox. Change-Id: I6a6c2c6d235ad9643879b00232930c8a0d2e3801 Signed-off-by: Subrata Banik <subratabanik@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/86725 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Dinesh Gehlot <digehlot@google.com> Reviewed-by: Jérémy Compostella <jeremy.compostella@intel.com>
This commit is contained in:
parent
c8f9199f12
commit
cf8f0693a6
4 changed files with 4 additions and 4 deletions
|
|
@ -85,7 +85,7 @@ config BMP_LOGO
|
|||
Uses the FSP to display the boot logo. This method supports a
|
||||
BMP file only. The uncompressed size can be up to 1 MB.
|
||||
|
||||
config FSP1_1_LOGO_FILE_NAME
|
||||
config BMP_LOGO_FILE_NAME
|
||||
string "Logo file"
|
||||
depends on BMP_LOGO
|
||||
default "3rdparty/blobs/mainboard/\$(MAINBOARDDIR)/logo.bmp"
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ endif
|
|||
|
||||
# Add logo to the cbfs image
|
||||
cbfs-files-$(CONFIG_BMP_LOGO) += logo.bmp
|
||||
logo.bmp-file := $(call strip_quotes,$(CONFIG_FSP1_1_LOGO_FILE_NAME))
|
||||
logo.bmp-file := $(call strip_quotes,$(CONFIG_BMP_LOGO_FILE_NAME))
|
||||
logo.bmp-type := raw
|
||||
logo.bmp-compression := LZMA
|
||||
|
||||
|
|
|
|||
|
|
@ -302,7 +302,7 @@ config BMP_LOGO_COMPRESS_LZ4
|
|||
|
||||
endchoice
|
||||
|
||||
config FSP2_0_LOGO_FILE_NAME
|
||||
config BMP_LOGO_FILE_NAME
|
||||
string "Logo file"
|
||||
depends on BMP_LOGO
|
||||
default "3rdparty/blobs/mainboard/\$(MAINBOARDDIR)/logo.bmp"
|
||||
|
|
|
|||
|
|
@ -438,7 +438,7 @@ endef
|
|||
|
||||
ifneq ($(CONFIG_HAVE_CUSTOM_BMP_LOGO),y)
|
||||
$(eval $(call add_bmp_logo_file_to_cbfs,CONFIG_BMP_LOGO, logo.bmp,\
|
||||
CONFIG_FSP2_0_LOGO_FILE_NAME))
|
||||
CONFIG_BMP_LOGO_FILE_NAME))
|
||||
endif
|
||||
|
||||
$(eval $(call add_bmp_logo_file_to_cbfs,CONFIG_PLATFORM_HAS_LOW_BATTERY_INDICATOR, \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue