projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
841c4d6
)
fs: Disable sandbox filesystem in SPL
author
Sean Anderson
<seanga2@gmail.com>
Sat, 14 Oct 2023 20:47:48 +0000
(16:47 -0400)
committer
Tom Rini
<trini@konsulko.com>
Wed, 18 Oct 2023 00:50:52 +0000
(20:50 -0400)
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>
fs/fs.c
patch
|
blob
|
history
diff --git
a/fs/fs.c
b/fs/fs.c
index cfc781bbb8d810dd50ae518abe0278b4b21c804a..4cb4310c9cc2bcac9f7bb366039b6e4f99d77e39 100644
(file)
--- a/
fs/fs.c
+++ b/
fs/fs.c
@@
-237,7
+237,7
@@
static struct fstype_info fstypes[] = {
.mkdir = fs_mkdir_unsupported,
},
#endif
-#if
def CONFIG_SANDBOX
+#if
IS_ENABLED(CONFIG_SANDBOX) && !IS_ENABLED(CONFIG_SPL_BUILD)
{
.fstype = FS_TYPE_SANDBOX,
.name = "sandbox",