diff options
author | Simon Glass <sjg@chromium.org> | 2017-08-04 16:34:58 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-11 17:44:50 -0400 |
commit | 7a7643184597a72e3b3791de068a402dfc4a66ec (patch) | |
tree | 35e4374189e58c7991b09ad573e684a98c1291bf /cmd/Kconfig | |
parent | 9b92a8d76ad7efdcda58a4da1a773cf4674cdc86 (diff) | |
download | u-boot-7a7643184597a72e3b3791de068a402dfc4a66ec.tar.gz |
Convert CONFIG_CMD_YAFFS2 to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_YAFFS2
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 3dfc94a182..a5c557e5b2 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1369,6 +1369,17 @@ config CMD_SCSI scan the bus, reset the bus, read and write data and get information about devices. +config CMD_YAFFS2 + bool "yaffs2 - Access of YAFFS2 filesystem" + depends on YAFFS2 + default y + help + This provides commands for accessing a YAFFS2 filesystem. Yet + Another Flash Filesystem 2 is a filesystem designed specifically + for NAND flash. It incorporates bad-block management and ensures + that device writes are sequential regardless of filesystem + activity. + endmenu menu "Debug commands" |