From 9f1e88ef2e2d51e4a1733563b3ddecaccd257769 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Tue, 5 Dec 2017 23:43:23 +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 71c2ae3b3..c762f6989 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -76,6 +76,9 @@ #define CONFIG_BOOTCOMMAND "" +#ifndef CONFIG_SANDBOX +#define CONFIG_SANDBOX 1 +#endif #include #define CONFIG_KEEP_SERVERADDR -- 2.30.2