From a87078c4239a1ad89b5b3598a76c06d8fa026717 Mon Sep 17 00:00:00 2001 From: Alex Kiernan Date: Thu, 17 Apr 2025 03:29:16 +0000 Subject: [PATCH] connman: Add iptables/ip6tables-save to ac_cv_path Set the paths for iptables/ip6tables so that they are correct for the target install and not discovered on the host filesystem. (From OE-Core rev: aa60cc7e65d3964d6eedea97246f1ebc24fe66e2) Signed-off-by: Alex Kiernan Signed-off-by: Richard Purdie --- meta/recipes-connectivity/connman/connman_1.44.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-connectivity/connman/connman_1.44.bb b/meta/recipes-connectivity/connman/connman_1.44.bb index bbe3585dc7..3ee2b12b7e 100644 --- a/meta/recipes-connectivity/connman/connman_1.44.bb +++ b/meta/recipes-connectivity/connman/connman_1.44.bb @@ -30,8 +30,10 @@ RRECOMMENDS:${PN} = "connman-conf" RCONFLICTS:${PN} = "networkmanager" EXTRA_OECONF += "\ - ac_cv_path_WPASUPPLICANT=${sbindir}/wpa_supplicant \ + ac_cv_path_IP6TABLES_SAVE=${sbindir}/ip6tables-save \ + ac_cv_path_IPTABLES_SAVE=${sbindir}/iptables-save \ ac_cv_path_PPPD=${sbindir}/pppd \ + ac_cv_path_WPASUPPLICANT=${sbindir}/wpa_supplicant \ --enable-debug \ --enable-loopback \ --enable-ethernet \