From: Vagrant Cascadian Date: Sun, 29 Jun 2025 00:33:57 +0000 (+0200) Subject: ensure-config-sandbox-for-make-env X-Git-Tag: archive/raspbian/2021.01+dfsg-5+rpi1+deb11u2^2~29 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7628e5bb3cb8a92c39c5e6cdbed00040a91910b7;p=u-boot.git ensure-config-sandbox-for-make-env Ensure that CONFIG_SANDBOX is set when running "make env", avoiding a failure to build caused by config_distro_bootcmd.h following the wrong codepath... Gbp-Pq: Name ensure-config-sandbox-for-make-env.patch --- diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index e0708fe57..e82f8f257 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -64,6 +64,9 @@ #ifdef __ASSEMBLY__ #define BOOTENV #else +#ifndef CONFIG_SANDBOX +#define CONFIG_SANDBOX 1 +#endif #include #endif