summaryrefslogtreecommitdiffstats
path: root/src/Kconfig
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev@nicevt.ru>2015-01-24 18:52:10 +0400
committerPatrick Georgi <pgeorgi@google.com>2015-10-25 07:28:38 +0100
commit6544cb3f1b431f96bb6d16f86e2cb4f75a4188b3 (patch)
treedc020da109acdc4186feaf5f403578f4f9c00ef4 /src/Kconfig
parent4731423b910213a7ad8ee0a3050501f0349b622d (diff)
downloadcoreboot-6544cb3f1b431f96bb6d16f86e2cb4f75a4188b3.tar.gz
coreboot-6544cb3f1b431f96bb6d16f86e2cb4f75a4188b3.tar.bz2
coreboot-6544cb3f1b431f96bb6d16f86e2cb4f75a4188b3.zip
Separate bootsplash image menuconfig option from others
The possibility of adding a bootsplash image to ROM should be independent from VGA_ROM_RUN and VESA menuconfig options. For example, the stored image could be saved in CBFS not for coreboot but for later use in SeaBIOS. Change-Id: I3a0ed53489c40d4d44bd4ebc358ae6667e6c797f Signed-off-by: Konstantin Aladyshev <aladyshev@nicevt.ru> Reviewed-on: http://review.coreboot.org/12129 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/Kconfig')
-rw-r--r--src/Kconfig17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 368384dc923f..3b7a249b519d 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -325,6 +325,23 @@ config RAM_CODE_SUPPORT
If enabled, coreboot discovers RAM configuration (value obtained by
reading board straps) and stores it in coreboot table.
+config BOOTSPLASH_IMAGE
+ bool "Add a bootsplash image"
+ help
+ Select this option if you have a bootsplash image that you would
+ like to add to your ROM.
+
+ This will only add the image to the ROM. To actually run it check
+ options under 'Display' section.
+
+config BOOTSPLASH_FILE
+ string "Bootsplash path and filename"
+ depends on BOOTSPLASH_IMAGE
+ default "bootsplash.jpg"
+ help
+ The path and filename of the file to use as graphical bootsplash
+ screen. The file format has to be jpg.
+
endmenu
source "src/acpi/Kconfig"