[Concept,12/26] fs: ext4: Allow EXT4_WRITE with FS_EXT4L

Message ID 20251222115639.700578-13-sjg@u-boot.org
State New
Headers
Series fs: ext4l: Add support for mounting ext4 filesystems (part G) |

Commit Message

Simon Glass Dec. 22, 2025, 11:56 a.m. UTC
  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(-)
  

Patch

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.