diff options
author | Nikhil M Jain | 2023-04-20 17:41:05 +0530 |
---|---|---|
committer | Anatolij Gustschin | 2023-04-24 21:37:45 +0200 |
commit | 072b0e16c482114d242580dd7a3197db5966705f (patch) | |
tree | e8f9bba2502f2486be5a1b52e93bfbf2baf30975 /common/Kconfig | |
parent | a8bca7ea61a6c492fbd6c32c6057168dd3f0b19b (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/Kconfig')
-rw-r--r-- | common/Kconfig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index f2783ee65d7..7c721861cc5 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. |