From: Pali Rohár Date: Wed, 6 Apr 2022 21:34:00 +0000 (+0200) Subject: fs: Allow to compile FS_SQUASHFS only for proper U-Boot X-Git-Tag: baikal/mips/sdk5.9~3^2~93^2~4 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=ce5271981632829ec6d7261dbee688a5f76b6379;p=uboot.git 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 --- diff --git a/fs/fs.c b/fs/fs.c index 97d47916f3..b812597ced 100644 --- a/fs/fs.c +++ b/fs/fs.c @@ -309,7 +309,7 @@ static struct fstype_info fstypes[] = { }, #endif #endif -#if IS_ENABLED(CONFIG_FS_SQUASHFS) +#if CONFIG_IS_ENABLED(FS_SQUASHFS) { .fstype = FS_TYPE_SQUASHFS, .name = "squashfs",