From 771eadd65ff8ad2dc027584c695f355ab16bcb99 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Fri, 12 Mar 2021 23:00:43 +0000 Subject: [PATCH] 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 --- include/configs/sandbox.h | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.30.2