]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
common: Kconfig: Add BMP configs
authorNikhil M Jain <n-jain1@ti.com>
Thu, 20 Apr 2023 12:11:05 +0000 (17:41 +0530)
committerAnatolij Gustschin <agust@denx.de>
Mon, 24 Apr 2023 19:37:45 +0000 (21:37 +0200)
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>
common/Kconfig

index f2783ee65d7b1e5b330afd7306068c7c3583ef36..7c721861cc51b49ad3438c1e545313deb0bc5e54 100644 (file)
@@ -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.