From b51bfac11ad54a47a992564d6bb30e920391a3ec Mon Sep 17 00:00:00 2001 From: Nikhil M Jain Date: Fri, 9 Jun 2023 14:29:44 +0530 Subject: [PATCH] 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 Reviewed-by: Simon Glass Reviewed-by: Devarsh Thakkar --- common/Kconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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.