mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
fs: Disable sandbox filesystem in SPL
Don't bother compiling the sandbox filesystem in SPL for now, as it is not needed. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
841c4d6088
commit
c39d22c337
1 changed files with 1 additions and 1 deletions
2
fs/fs.c
2
fs/fs.c
|
@ -237,7 +237,7 @@ static struct fstype_info fstypes[] = {
|
||||||
.mkdir = fs_mkdir_unsupported,
|
.mkdir = fs_mkdir_unsupported,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_SANDBOX
|
#if IS_ENABLED(CONFIG_SANDBOX) && !IS_ENABLED(CONFIG_SPL_BUILD)
|
||||||
{
|
{
|
||||||
.fstype = FS_TYPE_SANDBOX,
|
.fstype = FS_TYPE_SANDBOX,
|
||||||
.name = "sandbox",
|
.name = "sandbox",
|
||||||
|
|
Loading…
Reference in a new issue