From: Simon Glass <simon.glass@canonical.com> Update CONFIG_EXT4_WRITE to depend on either FS_EXT4 or FS_EXT4L, allowing write support to be enabled for the Linux-ported ext4l filesystem as well. Co-developed-by: Claude Opus 4.5 <noreply@anthropic.com> Signed-off-by: Simon Glass <simon.glass@canonical.com> --- fs/ext4/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ext4/Kconfig b/fs/ext4/Kconfig index 26cf7469d73..d7798cfb6b9 100644 --- a/fs/ext4/Kconfig +++ b/fs/ext4/Kconfig @@ -8,7 +8,7 @@ config FS_EXT4 config EXT4_WRITE bool "Enable ext4 filesystem write support" - depends on FS_EXT4 + depends on FS_EXT4 || FS_EXT4L help This provides support for creating and writing new files to an existing ext4 filesystem partition. -- 2.43.0