summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Thomsen <bruno.thomsen@gmail.com>2022-04-05 17:57:01 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2022-04-08 13:34:05 +0200
commit824e3cb42a32570eec4217ebdad0ed9e6862dc77 (patch)
tree1a3e7230922c5e4bdc50a99b38a47daa629d9c88
parentd8e2317ddac9db2b4c902c37772b1c166deb2e90 (diff)
downloadptxdist-824e3cb42a32570eec4217ebdad0ed9e6862dc77.tar.gz
ptxdist-824e3cb42a32570eec4217ebdad0ed9e6862dc77.tar.xz
host-dtc: remove old patch for version 1.6.0
After version bumping default host-dtc version from 1.6.0 to 1.6.1 there was left an old patch for 1.6.0. Removing the patch so we don't collect clutter. Fixes: 89a84394677e ("host-dtc: version bump 1.6.0 to 1.6.1") Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com> Message-Id: <20220405155701.15497-1-bruno.thomsen@gmail.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--patches/dtc-v1.6.0/0001-fdtdump-Fix-gcc11-warning.patch30
-rw-r--r--patches/dtc-v1.6.0/series4
2 files changed, 0 insertions, 34 deletions
diff --git a/patches/dtc-v1.6.0/0001-fdtdump-Fix-gcc11-warning.patch b/patches/dtc-v1.6.0/0001-fdtdump-Fix-gcc11-warning.patch
deleted file mode 100644
index 052419940..000000000
--- a/patches/dtc-v1.6.0/0001-fdtdump-Fix-gcc11-warning.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From: David Gibson <david@gibson.dropbear.id.au>
-Date: Wed, 6 Jan 2021 14:52:26 +1100
-Subject: [PATCH] fdtdump: Fix gcc11 warning
-
-In one place, fdtdump abuses fdt_set_magic(), passing it just a small char
-array instead of the full fdt header it expects. That's relying on the
-fact that in fact fdt_set_magic() will only actually access the first 4
-bytes of the buffer.
-
-This trips a new warning in GCC 11 - and it's entirely possible it was
-always UB. So, don't do that.
-
-Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
----
- fdtdump.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/fdtdump.c b/fdtdump.c
-index 9613befede71..d9fb374a59be 100644
---- a/fdtdump.c
-+++ b/fdtdump.c
-@@ -217,7 +217,7 @@ int main(int argc, char *argv[])
- char *p = buf;
- char *endp = buf + len;
-
-- fdt_set_magic(smagic, FDT_MAGIC);
-+ fdt32_st(smagic, FDT_MAGIC);
-
- /* poor man's memmem */
- while ((endp - p) >= FDT_MAGIC_SIZE) {
diff --git a/patches/dtc-v1.6.0/series b/patches/dtc-v1.6.0/series
deleted file mode 100644
index a7e9d0319..000000000
--- a/patches/dtc-v1.6.0/series
+++ /dev/null
@@ -1,4 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-fdtdump-Fix-gcc11-warning.patch
-# cb5c26c7ab3ae2082ecff7af4de4e8c5 - git-ptx-patches magic