summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/iproute2
diff options
context:
space:
mode:
authorTrevor Gamblin <tgamblin@baylibre.com>2023-07-21 08:48:09 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-07-25 15:27:33 +0100
commitaa4c640d8579f155944645d932a05e297330577a (patch)
tree60dc5ee08f8783b0bb5ca7cf9a80ab7700a19f42 /meta/recipes-connectivity/iproute2
parentbe48b99874e1beea1a716977972dba7186f34fb0 (diff)
downloadpoky-aa4c640d8579f155944645d932a05e297330577a.tar.gz
iproute2: upgrade 6.3.0 -> 6.4.0
Changelog: https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/log/ Added a patch for including limits.h with musl builds, or else we get failures such as: | mdb.c: In function 'mdb_parse_vni': | mdb.c:666:47: error: 'ULONG_MAX' undeclared (first use in this function) | 666 | if ((endptr && *endptr) || vni_num == ULONG_MAX) | | ^~~~~~~~~ | mdb.c:666:47: note: 'ULONG_MAX' is defined in header '<limits.h>'; did you forget to '#include <limits.h>'? (From OE-Core rev: ae2a9b8d3a8b119cc021b9c99cac72d18d5954ba) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/iproute2')
-rw-r--r--meta/recipes-connectivity/iproute2/iproute2/0001-bridge-mdb.c-include-limits.h.patch41
-rw-r--r--meta/recipes-connectivity/iproute2/iproute2_6.4.0.bb (renamed from meta/recipes-connectivity/iproute2/iproute2_6.3.0.bb)3
2 files changed, 43 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/iproute2/iproute2/0001-bridge-mdb.c-include-limits.h.patch b/meta/recipes-connectivity/iproute2/iproute2/0001-bridge-mdb.c-include-limits.h.patch
new file mode 100644
index 0000000000..f9a0e35d83
--- /dev/null
+++ b/meta/recipes-connectivity/iproute2/iproute2/0001-bridge-mdb.c-include-limits.h.patch
@@ -0,0 +1,41 @@
1From b13f04c0c685b6d2474aa7d97e191531f327bc45 Mon Sep 17 00:00:00 2001
2From: Trevor Gamblin <tgamblin@baylibre.com>
3Date: Thu, 20 Jul 2023 14:32:23 -0400
4Subject: [PATCH] bridge/mdb.c: include limits.h
5
6Upstream-Status: Submitted
7(https://lore.kernel.org/netdev/20230720203726.2316251-1-tgamblin@baylibre.com/)
8
9While building iproute2 6.4.0 with musl using Yocto Project, errors such
10as the following were encountered:
11
12| mdb.c: In function 'mdb_parse_vni':
13| mdb.c:666:47: error: 'ULONG_MAX' undeclared (first use in this function)
14| 666 | if ((endptr && *endptr) || vni_num == ULONG_MAX)
15| | ^~~~~~~~~
16| mdb.c:666:47: note: 'ULONG_MAX' is defined in header '<limits.h>'; did you forget to '#include <limits.h>'?
17
18Include limits.h in bridge/mdb.c to fix this issue. This change is based
19on one in Alpine Linux, but the author there had no plans to submit:
20https://git.alpinelinux.org/aports/commit/main/iproute2/include.patch?id=bd46efb8a8da54948639cebcfa5b37bd608f1069
21
22Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
23---
24 bridge/mdb.c | 1 +
25 1 file changed, 1 insertion(+)
26
27diff --git a/bridge/mdb.c b/bridge/mdb.c
28index fbb4f704..18793458 100644
29--- a/bridge/mdb.c
30+++ b/bridge/mdb.c
31@@ -15,6 +15,7 @@
32 #include <string.h>
33 #include <arpa/inet.h>
34 #include <netdb.h>
35+#include <limits.h>
36
37 #include "libnetlink.h"
38 #include "utils.h"
39--
402.41.0
41
diff --git a/meta/recipes-connectivity/iproute2/iproute2_6.3.0.bb b/meta/recipes-connectivity/iproute2/iproute2_6.4.0.bb
index 892fa854da..32e2f8176b 100644
--- a/meta/recipes-connectivity/iproute2/iproute2_6.3.0.bb
+++ b/meta/recipes-connectivity/iproute2/iproute2_6.4.0.bb
@@ -13,9 +13,10 @@ DEPENDS = "flex-native bison-native iptables libcap"
13 13
14SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BP}.tar.xz \ 14SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BP}.tar.xz \
15 file://0001-libc-compat.h-add-musl-workaround.patch \ 15 file://0001-libc-compat.h-add-musl-workaround.patch \
16 file://0001-bridge-mdb.c-include-limits.h.patch \
16 " 17 "
17 18
18SRC_URI[sha256sum] = "dfb2a98db96e7a653cffc6693335a1a466e29a34b6ac528be48f35e1d2766732" 19SRC_URI[sha256sum] = "4c51b8decbc7e4da159ffb066f590cfb93dbf9af7ff86b1647ce42b7c179a272"
19 20
20inherit update-alternatives bash-completion pkgconfig 21inherit update-alternatives bash-completion pkgconfig
21 22