From 47ab5b9a8d28f1b6ee236d451273ab93a4f128a0 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 9 Jun 2026 07:45:10 -0700 Subject: [PATCH] python3-scapy: Replace oe.utils.all_distro_featuresc with bb.utils.filter oe.utils.all_distro_features is being removed. Suggested-by: Peter Kjellerstedt Signed-off-by: Khem Raj --- meta-networking/recipes-devtools/python/python3-scapy_2.6.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-networking/recipes-devtools/python/python3-scapy_2.6.1.bb b/meta-networking/recipes-devtools/python/python3-scapy_2.6.1.bb index 678aec0135..0c547a53ce 100644 --- a/meta-networking/recipes-devtools/python/python3-scapy_2.6.1.bb +++ b/meta-networking/recipes-devtools/python/python3-scapy_2.6.1.bb @@ -42,7 +42,7 @@ do_install_ptest() { # note1: if ipv6 isn't enabled, skip the related test (add '-K ipv6' argument) # note2: to make this test work, your ISP also must support ipv6 - the test is trying # to ping google.com through ipv6. - if [ "${@oe.utils.all_distro_features(d, 'ipv6', 'true', 'false')}" = "false" ]; then + if [ -z "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}" ]; then sed -i 's/UTscapy.py/UTscapy.py -K ipv6/g' ${D}${PTEST_PATH}/run-ptest fi }