diff options
author | zbao <fishbaozi@gmail.com> | 2016-05-21 10:20:58 +0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-05-26 23:48:02 +0200 |
commit | c16918ac11c32338ba99656ec47ca05e26a731ac (patch) | |
tree | a1ca81a75cf29263dccf0a3b87ab05690e2a3cae /Makefile.inc | |
parent | 944655dadaf595bf655f266eb35ca2f17c8410eb (diff) |
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.
Change-Id: I06c4b14aae7f75be3406652a94612b5f30ce91c2
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: https://review.coreboot.org/14932
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.inc b/Makefile.inc index 7b8e79bd2d..574f2fe922 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -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 |