diff options
author | Tuomas Tynkkynen <tuomas@tuxera.com> | 2018-01-05 02:45:17 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-22 16:43:30 -0500 |
commit | 3d22bae57f1e5f0f0d3f69216e8aae27e8a797c4 (patch) | |
tree | 7defc4d313cd7b3e5fe8cd84342929c96a1e98c2 /cmd | |
parent | 6574864df8db62a45e1875d4e1c42e5c8b8cbe0e (diff) | |
download | u-boot-3d22bae57f1e5f0f0d3f69216e8aae27e8a797c4.zip u-boot-3d22bae57f1e5f0f0d3f69216e8aae27e8a797c4.tar.gz u-boot-3d22bae57f1e5f0f0d3f69216e8aae27e8a797c4.tar.bz2 |
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 'cmd')
-rw-r--r-- | cmd/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index faa8bc6..35fe9d5 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1367,17 +1367,20 @@ config CMD_CRAMFS config CMD_EXT2 bool "ext2 command support" + select FS_EXT4 help Enables EXT2 FS command config CMD_EXT4 bool "ext4 command support" + select FS_EXT4 help Enables EXT4 FS command config CMD_EXT4_WRITE depends on CMD_EXT4 bool "ext4 write command support" + select EXT4_WRITE help Enables EXT4 FS write command |