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:
Simon Glass
2025-12-17 07:53:22 -07:00
parent 7c5788a85d
commit 778701861a
3 changed files with 8 additions and 7 deletions

View File

@@ -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
View File

@@ -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.

View File

@@ -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.