From: Vagrant Cascadian Date: Mon, 5 Oct 2020 19:13:28 +0000 (+0100) Subject: ensure-config-sandbox-for-make-env X-Git-Tag: archive/raspbian/2021.01+dfsg-4+rpi1~1^2^2^2^2^2~6 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7d67c856f35f3b93dcb355c403ab823bd3da93f6;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 555431381..b79002370 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