mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-20 11:55:03 +00:00
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>
This commit is contained in:
parent
a8bca7ea61
commit
072b0e16c4
1 changed files with 12 additions and 0 deletions
|
@ -1154,3 +1154,15 @@ config FDT_SIMPLEFB
|
||||||
|
|
||||||
config IO_TRACE
|
config IO_TRACE
|
||||||
bool
|
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.
|
||||||
|
|
Loading…
Add table
Reference in a new issue