diff options
author | Simon Glass <sjg@chromium.org> | 2017-04-26 22:28:03 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-30 13:40:59 -0400 |
commit | 9707274718b0d343d93941fb19f9314ef3cffa4b (patch) | |
tree | 596a79b34cce24cd4d285f247531f5165c3ceddd /cmd | |
parent | d315628edbc99572c3d35cb72fffcd32e12f859b (diff) | |
download | u-boot-9707274718b0d343d93941fb19f9314ef3cffa4b.tar.gz |
fs: Convert CONFIG_CMD_CRAMFS to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_CRAMFS
Signed-off-by: Simon Glass <sjg@chromium.org>
[trini: imply CMD_CRAMFS for keymile]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 9eb6a353cb..4145fcf056 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -899,6 +899,16 @@ config CMD_CBFS U-Boot to actually boot the Operating System. Available commands are cbfsinit, cbfsinfo, cbfsls and cbfsload. +config CMD_CRAMFS + bool "Enable the 'cramfs' command" + help + This provides commands for dealing with CRAMFS (Compressed ROM + filesystem). CRAMFS is useful when space is tight since files are + compressed. Two commands are provided: + + cramfsls - lists files in a cramfs image + cramfsload - loads a file from a cramfs image + config CMD_EXT2 bool "ext2 command support" help |