fs: ext4: Allow EXT4_WRITE with FS_EXT4L

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>
This commit is contained in:
Simon Glass
2025-12-21 12:55:03 -07:00
parent 19de128635
commit d1a202192f

View File

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