diff options
author | Denys Dmytriyenko <denys@ti.com> | 2015-02-10 13:56:00 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-14 08:40:35 +0000 |
commit | 62052810dbf3ed19697078a48b617bfbdadf2a29 (patch) | |
tree | 66043b22468513d81c41e99a227df6a15de86ec7 /meta/recipes-bsp/u-boot/u-boot-fw-utils | |
parent | e6f57ae4cfad51107a8723cc42aec1ad2fc4c7da (diff) | |
download | openembedded-core-62052810dbf3ed19697078a48b617bfbdadf2a29.tar.gz openembedded-core-62052810dbf3ed19697078a48b617bfbdadf2a29.tar.bz2 openembedded-core-62052810dbf3ed19697078a48b617bfbdadf2a29.zip |
u-boot: update to version 2015.01
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-bsp/u-boot/u-boot-fw-utils')
-rw-r--r-- | meta/recipes-bsp/u-boot/u-boot-fw-utils/0001-tools-env-fix-build-error.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-bsp/u-boot/u-boot-fw-utils/0001-tools-env-fix-build-error.patch b/meta/recipes-bsp/u-boot/u-boot-fw-utils/0001-tools-env-fix-build-error.patch new file mode 100644 index 0000000000..381b505d1e --- /dev/null +++ b/meta/recipes-bsp/u-boot/u-boot-fw-utils/0001-tools-env-fix-build-error.patch @@ -0,0 +1,36 @@ +From ee2d75513452aa6d5306fd380104adc8a2f6d8f2 Mon Sep 17 00:00:00 2001 +From: Masahiro Yamada <yamada.m@jp.panasonic.com> +Date: Wed, 3 Dec 2014 10:22:50 +0900 +Subject: [PATCH] tools: env: fix build error + +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.) + +Upstream-Status: Submitted [http://patchwork.ozlabs.org/patch/417192/] + +Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> +Reported-by: Denys Dmytriyenko <denys@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> +-- +2.2.0 + |