new file mode 100644
@@ -0,0 +1,28 @@
+From e5d1c40915564df6974d6451b2a038c92773f2bd Mon Sep 17 00:00:00 2001
+From: Andrej Kozemcak <andrej.kozemcak@siemens.com>
+Date: Thu, 5 Mar 2026 08:06:54 +0100
+Subject: [PATCH] include/color.h: add missing include for types
+
+Fix `musl` build error
+
+Upstream-Status: Submitted [by email to netdev@vger.kernel.org]
+Signed-off-by: Andrej Kozemcak <andrej.kozemcak@siemens.com>
+---
+ include/color.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/include/color.h b/include/color.h
+index b543c267..3794a2aa 100644
+--- a/include/color.h
++++ b/include/color.h
+@@ -3,6 +3,7 @@
+ #define __COLOR_H__ 1
+
+ #include <stdbool.h>
++#include <linux/types.h>
+
+ enum color_attr {
+ COLOR_IFNAME,
+--
+2.47.3
+
deleted file mode 100644
@@ -1,43 +0,0 @@
-From 6c1113633fde51b0e60f02243cfad1b3d09762cc Mon Sep 17 00:00:00 2001
-From: Akhilesh Nema <nemaakhilesh@gmail.com>
-Date: Tue, 2 Dec 2025 18:11:24 -0800
-Subject: fix 'UINT_MAX' undeclared with build with musl libc
-
-- utils_math.c:136:20: error: 'UINT_MAX' undeclared (first use in this function)
-- tc_core.c:51:22: error: 'UINT_MAX' undeclared (first use in this function)
-
-Signed-off-by: Akhilesh Nema <nemaakhilesh@gmail.com>
-Upstream-Status: Backport [https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=6c1113633fde51b0e60f02243cfad1b3d09762cc]
-Signed-off-by: Alexander Kanavin <alex@linutronix.de>
----
- lib/utils_math.c | 1 +
- tc/tc_core.c | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git a/lib/utils_math.c b/lib/utils_math.c
-index a7e747440..fd2ddc7c7 100644
---- a/lib/utils_math.c
-+++ b/lib/utils_math.c
-@@ -4,6 +4,7 @@
- #include <stdlib.h>
- #include <string.h>
- #include <math.h>
-+#include <limits.h>
- #include <asm/types.h>
-
- #include "utils.h"
-diff --git a/tc/tc_core.c b/tc/tc_core.c
-index a422e02c8..b13b7d78a 100644
---- a/tc/tc_core.c
-+++ b/tc/tc_core.c
-@@ -11,6 +11,7 @@
- #include <unistd.h>
- #include <fcntl.h>
- #include <math.h>
-+#include <limits.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
-cgit 1.2.3-korg
-
similarity index 95%
rename from meta/recipes-connectivity/iproute2/iproute2_6.18.0.bb
rename to meta/recipes-connectivity/iproute2/iproute2_6.19.0.bb
@@ -13,10 +13,10 @@ DEPENDS = "flex-native bison-native libcap"
SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BP}.tar.xz \
file://0001-include-libnetlink.h-add-missing-include-for-htobe64.patch \
- file://fix-musl.patch \
+ file://0002-include-color.h-add-missing-include-for-types.patch \
"
-SRC_URI[sha256sum] = "6ba520e1975e4c50dc931eeae91ea37c198b8a173744885f8895b84325f9d456"
+SRC_URI[sha256sum] = "9332213d35480b647086a70c302de8568de83455a98774d35de216c4ce191006"
inherit update-alternatives bash-completion pkgconfig
Hi Mathieu, I fix the `musl` build. I hope it builds without errors now. Best Regards, Andrej --- Drop fix-musl.patch as it was merged upstream. Add missing include for types (linux/types.h). Changes: - new dpll command for managing Digital Phase-Locked Loop devices via netlink. - expanded CAN XL support - MPTCP improvements - devlink: - added support for 64‑bit parameters - added new SWITCHDEV_INACTIVE eswitch mode - added burst period configuration for health reporters - genl: - supports JSON output - ifstat, nstat, lnstat: - converted to use the high-level json_print API for unified JSON output Signed-off-by: Andrej Kozemcak <andrej.kozemcak@siemens.com> --- ...olor.h-add-missing-include-for-types.patch | 28 ++++++++++++ .../iproute2/iproute2/fix-musl.patch | 43 ------------------- ...{iproute2_6.18.0.bb => iproute2_6.19.0.bb} | 4 +- 3 files changed, 30 insertions(+), 45 deletions(-) create mode 100644 meta/recipes-connectivity/iproute2/iproute2/0002-include-color.h-add-missing-include-for-types.patch delete mode 100644 meta/recipes-connectivity/iproute2/iproute2/fix-musl.patch rename meta/recipes-connectivity/iproute2/{iproute2_6.18.0.bb => iproute2_6.19.0.bb} (95%)