Am 14. Oktober 2023 22:47:48 MESZ schrieb Sean Anderson <sean...@gmail.com>: >Don't bother compiling the sandbox filesystem in SPL for now, as it is not >needed. > >Signed-off-by: Sean Anderson <sean...@gmail.com> >--- > >Changes in v2: >- Disable sandbox filesystem in SPL instead of compiling it in > > fs/fs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/fs/fs.c b/fs/fs.c >index cfc781bbb8d..4cb4310c9cc 100644 >--- a/fs/fs.c >+++ b/fs/fs.c >@@ -237,7 +237,7 @@ static struct fstype_info fstypes[] = { > .mkdir = fs_mkdir_unsupported, > }, > #endif >-#ifdef CONFIG_SANDBOX >+#if IS_ENABLED(CONFIG_SANDBOX) && !IS_ENABLED(CONFIG_SPL_BUILD) Why do would you disable the sandbox file system in SPL for CONFIG_SANDBOX_SPL=y? I cannot see that this is necessary to enable the unit tests you are striving for. Instead we should extend the SPL unit tests to sandbox_spl_defconfig in the long run. Best regards Heinrich > { > .fstype = FS_TYPE_SANDBOX, > .name = "sandbox",
- [PATCH v2 13/29] fs: ext4: Fix building ext4 in SPL if... Sean Anderson
- [PATCH v2 10/29] spl: Allow enabling SPL_OF_REAL and S... Sean Anderson
- [PATCH v2 27/29] test: spl: Add a test for the NET loa... Sean Anderson
- [PATCH v2 02/29] spl: nor: Don't allocate header on st... Sean Anderson
- [PATCH v2 17/29] net: bootp: Fall back to BOOTP from D... Sean Anderson
- Re: [PATCH v2 17/29] net: bootp: Fall back to BOO... Heinrich Schuchardt
- Re: [PATCH v2 17/29] net: bootp: Fall back to... Sean Anderson
- Re: [PATCH v2 17/29] net: bootp: Fall bac... Simon Glass
- [PATCH v2 12/29] fs: Disable sandbox filesystem in SPL Sean Anderson
- Re: [PATCH v2 12/29] fs: Disable sandbox filesyst... Heinrich Schuchardt
- Re: [PATCH v2 12/29] fs: Disable sandbox filesyst... Simon Glass
- [PATCH v2 09/29] Move i.MX8 container image loading su... Sean Anderson
- [PATCH v2 06/29] arm: imx: Use log_err for errors in r... Sean Anderson
- [PATCH v2 20/29] sandbox: Support -T in spl Sean Anderson
- Re: [PATCH v2 20/29] sandbox: Support -T in spl Simon Glass
- [PATCH v2 08/29] arm: imx: Check header before calling... Sean Anderson
- [PATCH v2 04/29] arm: imx: Fix i.MX8 container load ad... Sean Anderson
- [PATCH v2 07/29] arm: imx: Add function to validate i.... Sean Anderson
- Re: [PATCH v2 00/29] test: spl: Test some load methods Tom Rini