summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikhil M Jain <n-jain1@ti.com>2023-04-20 15:11:05 +0300
committerAnatolij Gustschin <agust@denx.de>2023-04-24 22:37:45 +0300
commit072b0e16c482114d242580dd7a3197db5966705f (patch)
treee8f9bba2502f2486be5a1b52e93bfbf2baf30975
parenta8bca7ea61a6c492fbd6c32c6057168dd3f0b19b (diff)
downloadu-boot-072b0e16c482114d242580dd7a3197db5966705f.tar.xz
common: Kconfig: Add BMP configs
Add CONFIG_BMP and CONFIG_SPL_BMP which enable displaying bmp images at u-boot proper and SPL. Signed-off-by: Nikhil M Jain <n-jain1@ti.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Devarsh Thakkar <devarsht@ti.com>
-rw-r--r--common/Kconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig
index f2783ee65d..7c721861cc 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -1154,3 +1154,15 @@ config FDT_SIMPLEFB
config IO_TRACE
bool
+
+config BMP
+ bool "Enable bmp image display"
+ default y if CMD_BMP
+ help
+ Enable bmp functions to display bmp image and get bmp info.
+
+config SPL_BMP
+ bool "Enable bmp image display at SPL"
+ depends on SPL_VIDEO
+ help
+ Enable bmp functions to display bmp image and get bmp info at SPL.