diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-20 11:10:30 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-22 23:25:00 +0100 |
commit | 3157f8995e24f8a70492a261815be3a6fe51dcbd (patch) | |
tree | bb1bdb2211476523b8e561478ffb588afed3f7c1 /meta/recipes-bsp/u-boot/u-boot-fw-utils | |
parent | 55851c6f389cb027496c96f6e0609c8892032e4d (diff) | |
download | openembedded-core-3157f8995e24f8a70492a261815be3a6fe51dcbd.tar.gz openembedded-core-3157f8995e24f8a70492a261815be3a6fe51dcbd.tar.bz2 openembedded-core-3157f8995e24f8a70492a261815be3a6fe51dcbd.zip |
u-boot: Upgrade to 2015.07 release
This upgrades the U-Boot and its related recipes for the 2015.07
release.
The following recipes has been upgraded:
- u-boot
- u-boot-mkimage
- u-boot-fw-utils
The patches which were applied on top of the 2015.01 release are
dropped as those are not needed in this release.
The license checksum update was due minimal changes in the text, those
have no impact in the license terms.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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, 0 insertions, 36 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 deleted file mode 100644 index 381b505d1e..0000000000 --- a/meta/recipes-bsp/u-boot/u-boot-fw-utils/0001-tools-env-fix-build-error.patch +++ /dev/null @@ -1,36 +0,0 @@ -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 - |