summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-01-05 02:45:17 +0200
committerTom Rini <trini@konsulko.com>2018-01-22 16:43:30 -0500
commit3d22bae57f1e5f0f0d3f69216e8aae27e8a797c4 (patch)
tree7defc4d313cd7b3e5fe8cd84342929c96a1e98c2 /fs
parent6574864df8db62a45e1875d4e1c42e5c8b8cbe0e (diff)
fs: Migrate ext4 to Kconfig
Migrate the following symbols to Kconfig: CONFIG_FS_EXT4 CONFIG_EXT4_WRITE The definitions in config_fallbacks.h can now be expressed in Kconfig. Signed-off-by: Tuomas Tynkkynen <tuomas@tuxera.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/ext4/Kconfig13
1 files changed, 13 insertions, 0 deletions
diff --git a/fs/ext4/Kconfig b/fs/ext4/Kconfig
index e69de29bb2..1a913d2b6d 100644
--- a/fs/ext4/Kconfig
+++ b/fs/ext4/Kconfig
@@ -0,0 +1,13 @@
+config FS_EXT4
+ bool "Enable ext4 filesystem support"
+ help
+ This provides support for reading images from the ext4 filesystem.
+ ext4 is a widely used general-purpose filesystem for Linux.
+ You can also enable CMD_EXT4 to get access to ext4 commands.
+
+config EXT4_WRITE
+ bool "Enable ext4 filesystem write support"
+ depends on FS_EXT4
+ help
+ This provides support for creating and writing new files to an
+ existing ext4 filesystem partition.