ext4l: Plumb in the Kconfig
Update Kconfig options so that CONFIG_EXT4L can be enabled. Signed-off-by: Simon Glass <simon.glass@canonical.com>
This commit is contained in:
@@ -2787,20 +2787,20 @@ config CMD_EROFS
|
||||
|
||||
config CMD_EXT2
|
||||
bool "ext2 command support"
|
||||
select FS_EXT4
|
||||
select FS_EXT4 if !FS_EXT4L
|
||||
help
|
||||
Enables EXT2 FS command
|
||||
|
||||
config CMD_EXT4
|
||||
bool "ext4 command support"
|
||||
select FS_EXT4
|
||||
select FS_EXT4 if !FS_EXT4L
|
||||
help
|
||||
Enables EXT4 FS command
|
||||
|
||||
config CMD_EXT4_WRITE
|
||||
depends on CMD_EXT4
|
||||
depends on CMD_EXT4 || FS_EXT4L
|
||||
bool "ext4 write command support"
|
||||
select EXT4_WRITE
|
||||
select EXT4_WRITE if !FS_EXT4L
|
||||
help
|
||||
Enables EXT4 FS write command
|
||||
|
||||
|
||||
6
env/Kconfig
vendored
6
env/Kconfig
vendored
@@ -106,9 +106,9 @@ config ENV_IS_IN_FAT
|
||||
|
||||
config ENV_IS_IN_EXT4
|
||||
bool "Environment is in a EXT4 filesystem"
|
||||
depends on !CHAIN_OF_TRUST
|
||||
select FS_EXT4
|
||||
select EXT4_WRITE
|
||||
depends on !CHAIN_OF_TRUST && !FS_EXT4L
|
||||
select FS_EXT4 if !FS_EXT4L
|
||||
select EXT4_WRITE if !FS_EXT4L
|
||||
help
|
||||
Define this if you want to use the EXT4 file system for the environment.
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
config FS_EXT4
|
||||
bool "Enable ext4 filesystem support"
|
||||
depends on !FS_EXT4L
|
||||
help
|
||||
This provides support for reading images from the ext4 filesystem.
|
||||
ext4 is a widely used general-purpose filesystem for Linux.
|
||||
|
||||
Reference in New Issue
Block a user