UPSTREAM: splash: Put the suffix of splash file to CBFS name
The previous code harded the suffix of splash file as "jpg". Actually, SeaBIOS supports both jpg and bmp. BUG=None BRANCH=None TEST=None Change-Id: I06c4b14aae7f75be3406652a94612b5f30ce91c2 Original-Signed-off-by: Zheng Bao <fishbaozi@gmail.com> Original-Reviewed-on: https://review.coreboot.org/14932 Original-Tested-by: build bot (Jenkins) Original-Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/347588 Commit-Ready: Furquan Shaikh <furquan@chromium.org> Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Furquan Shaikh <furquan@chromium.org>
This commit is contained in:
parent
016716542f
commit
c011ab2301
1 changed files with 4 additions and 3 deletions
|
|
@ -836,9 +836,10 @@ cbfs-files-$(CONFIG_INCLUDE_CONFIG_FILE) += revision
|
|||
revision-file := $(obj)/build.h
|
||||
revision-type := raw
|
||||
|
||||
cbfs-files-$(CONFIG_BOOTSPLASH_IMAGE) += bootsplash.jpg
|
||||
bootsplash.jpg-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
|
||||
bootsplash.jpg-type := bootsplash
|
||||
BOOTSPLASH_SUFFIX=$(suffix $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE)))
|
||||
cbfs-files-$(CONFIG_BOOTSPLASH_IMAGE) += bootsplash$(BOOTSPLASH_SUFFIX)
|
||||
bootsplash$(BOOTSPLASH_SUFFIX)-file := $(call strip_quotes,$(CONFIG_BOOTSPLASH_FILE))
|
||||
bootsplash$(BOOTSPLASH_SUFFIX)-type := bootsplash
|
||||
|
||||
cbfs-files-$(CONFIG_BOARD_ID_MANUAL) += board_id
|
||||
board_id-file := $(obj)/board_id
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue