[U-Boot] [PATCH] tools: env: fix build error

Masahiro Yamada yamada.m at jp.panasonic.com
Wed Dec 3 02:22:50 CET 2014


Since CONFIG_SYS_ARCH, CONFIG_SYS_CPU, ... were moved to Kconfig,
tools/env/fw_printenv fails to build if CONFIG_ENV_VARS_UBOOT_CONFIG
is defined.
(I do not think this is the right way to fix the problem, but
for now I do not have enough time to take a close look.)

Signed-off-by: Masahiro Yamada <yamada.m at jp.panasonic.com>
Reported-by: Denys Dmytriyenko <denys at ti.com>
---

 tools/env/fw_env.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c
index 1173eea..698fe51 100644
--- a/tools/env/fw_env.c
+++ b/tools/env/fw_env.c
@@ -8,6 +8,9 @@
  * SPDX-License-Identifier:	GPL-2.0+
  */
 
+/* FIXME: Do not include this */
+#include <linux/kconfig.h>
+
 #include <errno.h>
 #include <env_flags.h>
 #include <fcntl.h>
-- 
1.9.1



More information about the U-Boot mailing list