summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorNikhil M Jain <n-jain1@ti.com>2023-06-09 14:29:44 +0530
committerUdit Kumar <u-kumar1@ti.com>2023-06-12 09:49:41 +0530
commitb51bfac11ad54a47a992564d6bb30e920391a3ec (patch)
tree6eb9975fd1ff538c661586c710c2d552778a21ae /common
parent69fac5d967dd8695e7721f72aa09cf2966eb6f89 (diff)
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>
Diffstat (limited to 'common')
-rw-r--r--common/Kconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig
index 0afc01b759..3fa7ba86cd 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -1106,3 +1106,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.