mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
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>
This commit is contained in:
parent
e4dc2d0620
commit
f362deaefb
1 changed files with 1 additions and 1 deletions
2
fs/fs.c
2
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",
|
||||
|
|
Loading…
Reference in a new issue