diff options
author | Simon Glass | 2017-04-26 22:27:55 -0600 |
---|---|---|
committer | Tom Rini | 2017-04-30 10:30:08 -0400 |
commit | 0f7102588cfb48e74b13646ce6df7c11a374423b (patch) | |
tree | 24f8ac5e40aa10cde2d069228904c2fb0c820015 /cmd/Kconfig | |
parent | 218257b01a73b114fa1136f6ee6f25aea80bf113 (diff) |
Convert CONFIG_CMD_BMP to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_BMP
Signed-off-by: Simon Glass <sjg@chromium.org>
[trini: Add depends on LCD || DM_VIDEO || VIDEO]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 306027c11a6..6488701b08f 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -642,6 +642,18 @@ endmenu menu "Misc commands" +config CMD_BMP + bool "Enable 'bmp' command" + depends on LCD || DM_VIDEO || VIDEO + help + This provides a way to obtain information about a BMP-format iamge + and to display it. BMP (which presumably stands for BitMaP) is a + file format defined by Microsoft which supports images of various + depths, formats and compression methods. Headers on the file + determine the formats used. This command can be used by first loading + the image into RAM, then using this command to look at it or display + it. + config CMD_BKOPS_ENABLE bool "mmc bkops enable" depends on CMD_MMC |