[Armadeus-commitlog] armadeus branch, master, updated. armadeus-7.0-248-g3f32804ed
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2021-04-20 19:15:58
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 3f32804ed2108ba6d8c2eab836972b3b7fc5e618 (commit)
from 3e1a7125d86efa00825efac160d3a3e2c84fcf8d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3f32804ed2108ba6d8c2eab836972b3b7fc5e618
Author: Sébastien Szymanski <seb...@ar...>
Date: Tue Apr 20 21:11:33 2021 +0200
[UBOOT]: 2017.01: drop patch 0609
Buildroot already fixes the libfdt headers inclusion issue.
-----------------------------------------------------------------------
Summary of changes:
.../2017.01/0609-use-local-libfdt-headers.patch | 167 ---------------------
1 file changed, 167 deletions(-)
delete mode 100644 patches/u-boot/2017.01/0609-use-local-libfdt-headers.patch
diff --git a/patches/u-boot/2017.01/0609-use-local-libfdt-headers.patch b/patches/u-boot/2017.01/0609-use-local-libfdt-headers.patch
deleted file mode 100644
index 4218a75c7..000000000
--- a/patches/u-boot/2017.01/0609-use-local-libfdt-headers.patch
+++ /dev/null
@@ -1,167 +0,0 @@
-Index: uboot-2017.01/include/libfdt.h
-===================================================================
---- uboot-2017.01.orig/include/libfdt.h
-+++ uboot-2017.01/include/libfdt.h
-@@ -51,8 +51,8 @@
- * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
--#include <libfdt_env.h>
--#include <fdt.h>
-+#include "libfdt_env.h"
-+#include "fdt.h"
-
- #define FDT_FIRST_SUPPORTED_VERSION 0x10
- #define FDT_LAST_SUPPORTED_VERSION 0x11
-Index: uboot-2017.01/include/image.h
-===================================================================
---- uboot-2017.01.orig/include/image.h
-+++ uboot-2017.01/include/image.h
-@@ -50,8 +50,8 @@ struct lmb;
-
- #if IMAGE_ENABLE_FIT
- #include <hash.h>
--#include <libfdt.h>
--#include <fdt_support.h>
-+#include "libfdt.h"
-+#include "fdt_support.h"
- # ifdef CONFIG_SPL_BUILD
- # ifdef CONFIG_SPL_CRC32_SUPPORT
- # define IMAGE_ENABLE_CRC32 1
-Index: uboot-2017.01/include/fdt_support.h
-===================================================================
---- uboot-2017.01.orig/include/fdt_support.h
-+++ uboot-2017.01/include/fdt_support.h
-@@ -10,7 +10,7 @@
-
- #ifdef CONFIG_OF_LIBFDT
-
--#include <libfdt.h>
-+#include "libfdt.h"
-
- u32 fdt_getprop_u32_default_node(const void *fdt, int off, int cell,
- const char *prop, const u32 dflt);
-Index: uboot-2017.01/lib/libfdt/fdt_ro.c
-===================================================================
---- uboot-2017.01.orig/lib/libfdt/fdt_ro.c
-+++ uboot-2017.01/lib/libfdt/fdt_ro.c
-@@ -3,7 +3,7 @@
- * Copyright (C) 2006 David Gibson, IBM Corporation.
- * SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
- */
--#include <libfdt_env.h>
-+#include "../../include/libfdt_env.h"
-
- #ifndef USE_HOSTCC
- #include <fdt.h>
-Index: uboot-2017.01/lib/libfdt/fdt.c
-===================================================================
---- uboot-2017.01.orig/lib/libfdt/fdt.c
-+++ uboot-2017.01/lib/libfdt/fdt.c
-@@ -3,7 +3,7 @@
- * Copyright (C) 2006 David Gibson, IBM Corporation.
- * SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
- */
--#include <libfdt_env.h>
-+#include "../../include/libfdt_env.h"
-
- #ifndef USE_HOSTCC
- #include <fdt.h>
-Index: uboot-2017.01/lib/libfdt/fdt_strerror.c
-===================================================================
---- uboot-2017.01.orig/lib/libfdt/fdt_strerror.c
-+++ uboot-2017.01/lib/libfdt/fdt_strerror.c
-@@ -3,7 +3,7 @@
- * Copyright (C) 2006 David Gibson, IBM Corporation.
- * SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
- */
--#include <libfdt_env.h>
-+#include "../../include/libfdt_env.h"
-
- #ifndef USE_HOSTCC
- #include <fdt.h>
-Index: uboot-2017.01/lib/fdtdec_common.c
-===================================================================
---- uboot-2017.01.orig/lib/fdtdec_common.c
-+++ uboot-2017.01/lib/fdtdec_common.c
-@@ -13,8 +13,8 @@
- #include <libfdt.h>
- #include <fdtdec.h>
- #else
--#include "libfdt.h"
--#include "fdt_support.h"
-+#include "../include/libfdt.h"
-+#include "../include/fdt_support.h"
-
- #define debug(...)
- #endif
-Index: uboot-2017.01/lib/libfdt/libfdt_internal.h
-===================================================================
---- uboot-2017.01.orig/lib/libfdt/libfdt_internal.h
-+++ uboot-2017.01/lib/libfdt/libfdt_internal.h
-@@ -5,7 +5,7 @@
- * Copyright (C) 2006 David Gibson, IBM Corporation.
- * SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
- */
--#include <fdt.h>
-+#include "../../include/fdt.h"
-
- #define FDT_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
- #define FDT_TAGALIGN(x) (FDT_ALIGN((x), FDT_TAGSIZE))
-Index: uboot-2017.01/lib/libfdt/fdt_wip.c
-===================================================================
---- uboot-2017.01.orig/lib/libfdt/fdt_wip.c
-+++ uboot-2017.01/lib/libfdt/fdt_wip.c
-@@ -3,7 +3,7 @@
- * Copyright (C) 2006 David Gibson, IBM Corporation.
- * SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
- */
--#include <libfdt_env.h>
-+#include "../../include/libfdt_env.h"
-
- #ifndef USE_HOSTCC
- #include <fdt.h>
-Index: uboot-2017.01/lib/libfdt/fdt_rw.c
-===================================================================
---- uboot-2017.01.orig/lib/libfdt/fdt_rw.c
-+++ uboot-2017.01/lib/libfdt/fdt_rw.c
-@@ -3,7 +3,7 @@
- * Copyright (C) 2006 David Gibson, IBM Corporation.
- * SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
- */
--#include <libfdt_env.h>
-+#include "../../include/libfdt_env.h"
-
- #ifndef USE_HOSTCC
- #include <fdt.h>
-Index: uboot-2017.01/lib/libfdt/fdt_region.c
-===================================================================
---- uboot-2017.01.orig/lib/libfdt/fdt_region.c
-+++ uboot-2017.01/lib/libfdt/fdt_region.c
-@@ -5,7 +5,7 @@
- * SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
- */
-
--#include <libfdt_env.h>
-+#include "../../include/libfdt_env.h"
-
- #ifndef USE_HOSTCC
- #include <fdt.h>
-Index: uboot-2017.01/lib/libfdt/fdt_sw.c
-===================================================================
---- uboot-2017.01.orig/lib/libfdt/fdt_sw.c
-+++ uboot-2017.01/lib/libfdt/fdt_sw.c
-@@ -3,9 +3,10 @@
- * Copyright (C) 2006 David Gibson, IBM Corporation.
- * SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
- */
--#include <libfdt_env.h>
--#include <fdt.h>
--#include <libfdt.h>
-+#include "../../include/libfdt_env.h"
-+
-+#include "../../include/fdt.h"
-+#include "../../include/libfdt.h"
-
- #include "libfdt_internal.h"
-
hooks/post-receive
--
armadeus
|