diff options
author | Simon Glass <sjg@chromium.org> | 2017-08-04 22:34:58 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-11 21:44:50 (GMT) |
commit | 7a7643184597a72e3b3791de068a402dfc4a66ec (patch) | |
tree | 35e4374189e58c7991b09ad573e684a98c1291bf /fs | |
parent | 9b92a8d76ad7efdcda58a4da1a773cf4674cdc86 (diff) | |
download | u-boot-fsl-qoriq-7a7643184597a72e3b3791de068a402dfc4a66ec.tar.xz |
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 'fs')
-rw-r--r-- | fs/Kconfig | 2 | ||||
-rw-r--r-- | fs/yaffs2/Kconfig | 7 |
2 files changed, 9 insertions, 0 deletions
@@ -18,4 +18,6 @@ source "fs/ubifs/Kconfig" source "fs/cramfs/Kconfig" +source "fs/yaffs2/Kconfig" + endmenu diff --git a/fs/yaffs2/Kconfig b/fs/yaffs2/Kconfig new file mode 100644 index 0000000..45ffdf6 --- /dev/null +++ b/fs/yaffs2/Kconfig @@ -0,0 +1,7 @@ +config YAFFS2 + bool "YAFFS2 filesystem support" + help + This provides access to YAFFS2 filesystems. 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. |