From a9cf464662b2b127db47cc23ec09b4cb3d052cae Mon Sep 17 00:00:00 2001 From: Changqing Li Date: Mon, 14 Apr 2025 16:27:15 +0800 Subject: [PATCH] version-check.conf: mute bridge-utils version mismatch warning Runtime version of brctl is 1.7.1, but the configure.ac set version as 1.7 (AC_INIT([bridge-utils],[1.7])). And refer [1], this utility is DEPRECATED, only critical bug fixes only, so it is nearly not possible to correct from upstream, so mute this warning since it has no critical influence. [1] https://git.kernel.org/pub/scm/network/bridge/bridge-utils.git/commit/?h=main&id=ab8a2cc330253321be7bc69dea88bfaa3d48415e Signed-off-by: Changqing Li Signed-off-by: Khem Raj --- meta-oe/conf/version-check.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/conf/version-check.conf b/meta-oe/conf/version-check.conf index 130f2f6058..ecc8802565 100644 --- a/meta-oe/conf/version-check.conf +++ b/meta-oe/conf/version-check.conf @@ -21,3 +21,4 @@ CHECK_VERSION_PV:pn-can-utils = "%" CHECK_VERSION_PV:pn-luajit = "${PV}.%" CHECK_VERSION_PV:pn-sg3-utils = "%" CHECK_VERSION_PV:pn-netperf = "2.7.%" +CHECK_VERSION_PV:pn-bridge-utils = "1.7%"