From: Nikhil M Jain Date: Thu, 20 Apr 2023 12:11:05 +0000 (+0530) Subject: common: Kconfig: Add BMP configs X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=072b0e16c482114d242580dd7a3197db5966705f;p=u-boot.git 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 --- 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.