From 072b0e16c482114d242580dd7a3197db5966705f Mon Sep 17 00:00:00 2001 From: Nikhil M Jain Date: Thu, 20 Apr 2023 17:41:05 +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 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.