From b701e16b9a583b87bcbd01cde937713d9ef9059a Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Sat, 20 Apr 2019 00:43:08 +0100 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 e36a5fec0..db159ee94 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -63,6 +63,9 @@ func(HOST, host, 1) \ func(HOST, host, 0) +#ifndef CONFIG_SANDBOX +#define CONFIG_SANDBOX 1 +#endif #include #define CONFIG_KEEP_SERVERADDR -- 2.30.2