diff options
author | Baruch Siach <baruch@tkos.co.il> | 2024-05-15 07:37:16 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-06-07 16:20:27 -0600 |
commit | 6068abe33fff28ba50a0f68eabc5d9eb31b7045d (patch) | |
tree | 2c5d7ff694776d538e9f7411c755f5da7c28d3c5 | |
parent | 2b6c4b66e5df5c82e5197191d32ac7b81e29abcb (diff) |
fs: relax ext4_write_file() dependency
ext4_write_file() depends on CONFIG_EXT4_WRITE. Allow build without
CONFIG_CMD_EXT4_WRITE.
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
-rw-r--r-- | fs/fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -224,7 +224,7 @@ static struct fstype_info fstypes[] = { .exists = ext4fs_exists, .size = ext4fs_size, .read = ext4_read_file, -#ifdef CONFIG_CMD_EXT4_WRITE +#ifdef CONFIG_EXT4_WRITE .write = ext4_write_file, .ln = ext4fs_create_link, #else |