summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorNiko Mauno <niko.mauno@vaisala.com>2025-03-20 10:15:27 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-24 17:29:16 +0000
commit2c1ae6e2ffc140746e58c69a7eb7aa27d27aca6b (patch)
tree47e2eb4f133cca24ad627002fc1a6cc36e73c3db /meta
parent64577ef1869b84025079e58e0786a3e73d94a5f5 (diff)
downloadpoky-2c1ae6e2ffc140746e58c69a7eb7aa27d27aca6b.tar.gz
iproute2: Add iptables PACKAGECONFIG knob
iproute2 detects presence of iptables during building and can also be built without it. Add PACKAGECONFIG option which allows user to optionally leave it out, and enable it by default to keep current recipe behavior. (From OE-Core rev: 07ddaeaacaab4c3e264816dea6de32378617bf4e) Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-connectivity/iproute2/iproute2_6.13.0.bb5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/iproute2/iproute2_6.13.0.bb b/meta/recipes-connectivity/iproute2/iproute2_6.13.0.bb
index f2ed381132..0f37eaa7b3 100644
--- a/meta/recipes-connectivity/iproute2/iproute2_6.13.0.bb
+++ b/meta/recipes-connectivity/iproute2/iproute2_6.13.0.bb
@@ -9,7 +9,7 @@ LICENSE = "GPL-2.0-or-later"
9LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \ 9LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \
10 " 10 "
11 11
12DEPENDS = "flex-native bison-native iptables libcap" 12DEPENDS = "flex-native bison-native libcap"
13 13
14SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BP}.tar.xz \ 14SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BP}.tar.xz \
15 file://0001-include-libnetlink.h-add-missing-include-for-htobe64.patch \ 15 file://0001-include-libnetlink.h-add-missing-include-for-htobe64.patch \
@@ -19,10 +19,11 @@ SRC_URI[sha256sum] = "a43aa43338d882b44d01e549f3f105a92ae9feea32a82fae45a88e7a49
19 19
20inherit update-alternatives bash-completion pkgconfig 20inherit update-alternatives bash-completion pkgconfig
21 21
22PACKAGECONFIG ??= "tipc elf devlink" 22PACKAGECONFIG ??= "tipc elf devlink iptables"
23PACKAGECONFIG[tipc] = ",,libmnl," 23PACKAGECONFIG[tipc] = ",,libmnl,"
24PACKAGECONFIG[elf] = ",,elfutils," 24PACKAGECONFIG[elf] = ",,elfutils,"
25PACKAGECONFIG[devlink] = ",,libmnl," 25PACKAGECONFIG[devlink] = ",,libmnl,"
26PACKAGECONFIG[iptables] = ",,iptables"
26PACKAGECONFIG[rdma] = ",,libmnl," 27PACKAGECONFIG[rdma] = ",,libmnl,"
27PACKAGECONFIG[selinux] = ",,libselinux" 28PACKAGECONFIG[selinux] = ",,libselinux"
28 29