From 88c22e566d0e0e1997edb6ac5f51a7818366d6cd Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 22 Apr 2026 13:43:51 -0700 Subject: [PATCH] ebtables: Fix update-alternatives by setting ALTERNATIVE_TARGET The commit adding update-alternatives support omitted ALTERNATIVE_TARGET[ebtables], causing the bbclass to fall back to constructing the target as ${sbindir}/ebtables.ebtables which does not exist. The binary is installed as ebtables-legacy, so set ALTERNATIVE_TARGET accordingly. fixes QA warnings: ebtables: alternative target does not exist, skipping ebtables: NOT adding alternative provide /usr/sbin/ebtables ebtables: alt_link == alt_target: /usr/sbin/ebtables == /usr/sbin/ebtables Fixes: 584fec0f74ad ("ebtables: Use update alternatives for "ebtables"") Signed-off-by: Khem Raj --- meta-networking/recipes-filter/ebtables/ebtables_2.0.11.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-networking/recipes-filter/ebtables/ebtables_2.0.11.bb b/meta-networking/recipes-filter/ebtables/ebtables_2.0.11.bb index 5ae30e440c..5e9f9ce070 100644 --- a/meta-networking/recipes-filter/ebtables/ebtables_2.0.11.bb +++ b/meta-networking/recipes-filter/ebtables/ebtables_2.0.11.bb @@ -52,4 +52,5 @@ SYSTEMD_SERVICE:${PN} = "ebtables.service" ALTERNATIVE:${PN} = "ebtables" ALTERNATIVE_LINK_NAME[ebtables] = "${sbindir}/ebtables" +ALTERNATIVE_TARGET[ebtables] = "${sbindir}/ebtables-legacy" ALTERNATIVE_PRIORITY[ebtables] = "90"