summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/dtc
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2021-11-12 14:02:35 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-13 16:11:27 +0000
commitaeae9e45ddb7fd6ea7bdc4e7fde8d0b88796e418 (patch)
tree4253ca3e82267c7e20f8201b27061478d74dd82b /meta/recipes-kernel/dtc
parent8b5edbb9a2e7ba4b28eb216fb7fd03d6bff368ce (diff)
downloadpoky-aeae9e45ddb7fd6ea7bdc4e7fde8d0b88796e418.tar.gz
dtc: fix mingw build
Backport a patch to fix the build of fdtdump with mingw, which so the tools now build successfully with mingw. (From OE-Core rev: 1bbbd69d9f1600f53737f2c459a08eae0d74a42c) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/dtc')
-rw-r--r--meta/recipes-kernel/dtc/dtc/0001-fdtdump-fix-Werror-int-to-pointer-cast.patch40
-rw-r--r--meta/recipes-kernel/dtc/dtc_1.6.1.bb3
2 files changed, 42 insertions, 1 deletions
diff --git a/meta/recipes-kernel/dtc/dtc/0001-fdtdump-fix-Werror-int-to-pointer-cast.patch b/meta/recipes-kernel/dtc/dtc/0001-fdtdump-fix-Werror-int-to-pointer-cast.patch
new file mode 100644
index 0000000000..4c3e34b1ff
--- /dev/null
+++ b/meta/recipes-kernel/dtc/dtc/0001-fdtdump-fix-Werror-int-to-pointer-cast.patch
@@ -0,0 +1,40 @@
1Fix the build of fdtdump with mingw.
2
3Upstream-Status: Backport
4Signed-off-by: Ross Burton <ross.burton@arm.com>
5
6From ae0ce1fa7f4d679b5f8df1fc0e797246e43547fe Mon Sep 17 00:00:00 2001
7From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= <marcandre.lureau@redhat.com>
8Date: Wed, 25 Aug 2021 16:13:50 +0400
9Subject: [PATCH] fdtdump: fix -Werror=int-to-pointer-cast
10MIME-Version: 1.0
11Content-Type: text/plain; charset=UTF-8
12Content-Transfer-Encoding: 8bit
13
14With mingw64-gcc, the compiler complains with various warnings:
15error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
16
17Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
18Message-Id: <20210825121350.213551-1-marcandre.lureau@redhat.com>
19Acked-by: Rob Herring <robh@kernel.org>
20Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21---
22 fdtdump.c | 2 +-
23 1 file changed, 1 insertion(+), 1 deletion(-)
24
25diff --git a/fdtdump.c b/fdtdump.c
26index d9fb374..483f367 100644
27--- a/fdtdump.c
28+++ b/fdtdump.c
29@@ -21,7 +21,7 @@
30 #define MAX_VERSION 17
31
32 #define ALIGN(x, a) (((x) + ((a) - 1)) & ~((a) - 1))
33-#define PALIGN(p, a) ((void *)(ALIGN((unsigned long)(p), (a))))
34+#define PALIGN(p, a) ((void *)(ALIGN((uintptr_t)(p), (a))))
35 #define GET_CELL(p) (p += 4, *((const fdt32_t *)(p-4)))
36
37 static const char *tagname(uint32_t tag)
38--
392.25.1
40
diff --git a/meta/recipes-kernel/dtc/dtc_1.6.1.bb b/meta/recipes-kernel/dtc/dtc_1.6.1.bb
index 6365f73e10..2610b26a94 100644
--- a/meta/recipes-kernel/dtc/dtc_1.6.1.bb
+++ b/meta/recipes-kernel/dtc/dtc_1.6.1.bb
@@ -7,7 +7,8 @@ LICENSE = "GPLv2 | BSD-2-Clause"
7LIC_FILES_CHKSUM = "file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ 7LIC_FILES_CHKSUM = "file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
8 file://libfdt/libfdt.h;beginline=4;endline=7;md5=05bb357cfb75cae7d2b01d2ee8d76407" 8 file://libfdt/libfdt.h;beginline=4;endline=7;md5=05bb357cfb75cae7d2b01d2ee8d76407"
9 9
10SRC_URI = "git://git.kernel.org/pub/scm/utils/dtc/dtc.git;branch=master" 10SRC_URI = "git://git.kernel.org/pub/scm/utils/dtc/dtc.git;branch=master \
11 file://0001-fdtdump-fix-Werror-int-to-pointer-cast.patch"
11SRCREV = "b6910bec11614980a21e46fbccc35934b671bd81" 12SRCREV = "b6910bec11614980a21e46fbccc35934b671bd81"
12 13
13UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" 14UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"