mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-14 04:46:01 +01: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
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…
x
Reference in New Issue
Block a user