commit | 1660e96d5da9145816a6429792a1cff35b2f13e0 | [log] [tgz] |
---|---|---|
author | Pali Rohár <pali@kernel.org> | Wed Apr 06 23:34:00 2022 +0200 |
committer | Tom Rini <trini@konsulko.com> | Thu Apr 21 09:08:57 2022 -0400 |
tree | 47bd703de33f812d7075d7a3b7cd0d0484d3426c | |
parent | 765b5806a95ac05d2227aaa0a452df5331ee0a1e [diff] [blame] |
fs: Allow to compile FS_SQUASHFS only for proper U-Boot CONFIG_SPL_FS_SQUASHFS cannot be disabled when CONFIG_FS_SQUASHFS is enabled. Fix it. Signed-off-by: Pali Rohár <pali@kernel.org>
diff --git a/fs/fs.c b/fs/fs.c index 97d4791..b812597 100644 --- a/fs/fs.c +++ b/fs/fs.c
@@ -309,7 +309,7 @@ }, #endif #endif -#if IS_ENABLED(CONFIG_FS_SQUASHFS) +#if CONFIG_IS_ENABLED(FS_SQUASHFS) { .fstype = FS_TYPE_SQUASHFS, .name = "squashfs",