diff options
-rw-r--r-- | meta/recipes-connectivity/iproute2/iproute2/0001-lib-fix-ax25.h-include-for-musl.patch | 37 | ||||
-rw-r--r-- | meta/recipes-connectivity/iproute2/iproute2_5.17.0.bb (renamed from meta/recipes-connectivity/iproute2/iproute2_5.16.0.bb) | 3 |
2 files changed, 1 insertions, 39 deletions
diff --git a/meta/recipes-connectivity/iproute2/iproute2/0001-lib-fix-ax25.h-include-for-musl.patch b/meta/recipes-connectivity/iproute2/iproute2/0001-lib-fix-ax25.h-include-for-musl.patch deleted file mode 100644 index e4c0cf4aa5..0000000000 --- a/meta/recipes-connectivity/iproute2/iproute2/0001-lib-fix-ax25.h-include-for-musl.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | From 8bced38a941a181f1468fa39541e872e51b6022f Mon Sep 17 00:00:00 2001 | ||
2 | From: Sam James <sam@gentoo.org> | ||
3 | Date: Thu, 13 Jan 2022 08:14:13 +0000 | ||
4 | Subject: [PATCH] lib: fix ax25.h include for musl | ||
5 | |||
6 | ax25.h isn't guaranteed to be avilable in netax25/*; | ||
7 | it's dependent on our choice of libc (it's not available | ||
8 | on musl at least) [0]. | ||
9 | |||
10 | Let's use the version from linux-headers. | ||
11 | |||
12 | [0] https://sourceware.org/glibc/wiki/Synchronizing_Headers | ||
13 | Bug: https://bugs.gentoo.org/831102 | ||
14 | |||
15 | Signed-off-by: Sam James <sam@gentoo.org> | ||
16 | Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> | ||
17 | |||
18 | Upstream-Status: Backport [https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=8bced38a941a181f1468fa39541e872e51b6022f] | ||
19 | --- | ||
20 | lib/ax25_ntop.c | 2 +- | ||
21 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
22 | |||
23 | diff --git a/lib/ax25_ntop.c b/lib/ax25_ntop.c | ||
24 | index cfd0e04b..3a72a43e 100644 | ||
25 | --- a/lib/ax25_ntop.c | ||
26 | +++ b/lib/ax25_ntop.c | ||
27 | @@ -2,7 +2,7 @@ | ||
28 | |||
29 | #include <errno.h> | ||
30 | #include <sys/socket.h> | ||
31 | -#include <netax25/ax25.h> | ||
32 | +#include <linux/ax25.h> | ||
33 | |||
34 | #include "utils.h" | ||
35 | |||
36 | -- | ||
37 | 2.32.0 (Apple Git-132) | ||
diff --git a/meta/recipes-connectivity/iproute2/iproute2_5.16.0.bb b/meta/recipes-connectivity/iproute2/iproute2_5.17.0.bb index 871f8d8fb7..becbaa9190 100644 --- a/meta/recipes-connectivity/iproute2/iproute2_5.16.0.bb +++ b/meta/recipes-connectivity/iproute2/iproute2_5.17.0.bb | |||
@@ -2,10 +2,9 @@ require iproute2.inc | |||
2 | 2 | ||
3 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BP}.tar.xz \ | 3 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BP}.tar.xz \ |
4 | file://0001-libc-compat.h-add-musl-workaround.patch \ | 4 | file://0001-libc-compat.h-add-musl-workaround.patch \ |
5 | file://0001-lib-fix-ax25.h-include-for-musl.patch \ | ||
6 | " | 5 | " |
7 | 6 | ||
8 | SRC_URI[sha256sum] = "c064b66f6b001c2a35aa5224b5b1ac8aa4bee104d7dce30d6f10a84cb8b01e2f" | 7 | SRC_URI[sha256sum] = "6e384f1b42c75e1a9daac57866da37dcff909090ba86eb25a6e764da7893660e" |
9 | 8 | ||
10 | # CFLAGS are computed in Makefile and reference CCOPTS | 9 | # CFLAGS are computed in Makefile and reference CCOPTS |
11 | # | 10 | # |