From: Vagrant Cascadian Date: Fri, 28 Aug 2020 23:35:40 +0000 (+0100) Subject: ensure-config-sandbox-for-make-env X-Git-Tag: archive/raspbian/2020.07+dfsg-2+rpi1^2~7 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f076a80e91fb01a0d2dd9b160b4032b680dd7c84;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 2a81f3a9b..467dc4fd9 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -61,6 +61,9 @@ #ifdef __ASSEMBLY__ #define BOOTENV #else +#ifndef CONFIG_SANDBOX +#define CONFIG_SANDBOX 1 +#endif #include #endif