summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2025-11-08 20:32:08 +0100
committerKhem Raj <raj.khem@gmail.com>2025-11-08 23:04:38 -0800
commit6f2ec3922fd33c8a208e89f807068e473d576b4a (patch)
tree5c8a206d1042a69e0d01d101c200abb920c71d83
parent3a900f7596dd42bbe823641a15c11d1b4819f6e6 (diff)
downloadmeta-openembedded-6f2ec3922fd33c8a208e89f807068e473d576b4a.tar.gz
netsniff-ng: upgarde 0.6.8 -> 0.6.9
Source branch was renamed from master to main. Drop patch that was incorporated in this release. Changelog: Use GitHub actions for CI Allow to manually define CPUs for trafgen Fix make install and output netsniff-ng stats on stderr trafgen: Fix for ipv6 header generation when L3-only devices are present mausezahn: use getopt_long instead of getopt build: fix install dependencies in Makefile template trafgen: move cpu stats temp file to /tmp ring_tx: handle EINTR from sendto Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-networking/recipes-support/netsniff-ng/files/0001-Cmds-automatically-create-folder.patch28
-rw-r--r--meta-networking/recipes-support/netsniff-ng/netsniff-ng_0.6.9.bb (renamed from meta-networking/recipes-support/netsniff-ng/netsniff-ng_0.6.8.bb)7
2 files changed, 2 insertions, 33 deletions
diff --git a/meta-networking/recipes-support/netsniff-ng/files/0001-Cmds-automatically-create-folder.patch b/meta-networking/recipes-support/netsniff-ng/files/0001-Cmds-automatically-create-folder.patch
deleted file mode 100644
index 490990d29d..0000000000
--- a/meta-networking/recipes-support/netsniff-ng/files/0001-Cmds-automatically-create-folder.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1From 7c00d75d16da18a9998fc4cca28d3c953dd54ceb Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Cl=C3=A9ment=20P=C3=A9ron?= <peron.clem@gmail.com>
3Date: Mon, 14 Feb 2022 18:37:22 +0100
4Subject: [PATCH] Cmds: automatically create folder
5
6---
7Upstream-Status: Pending
8
9 Cmds | 3 ++-
10 1 file changed, 2 insertions(+), 1 deletion(-)
11
12diff --git a/Cmds b/Cmds
13index e590b38..3df23b8 100644
14--- a/Cmds
15+++ b/Cmds
16@@ -44,7 +44,8 @@ ifeq ("$(origin PREFIX)", "$(filter $(origin PREFIX), file command line)")
17 INSTX = echo -e " INST\t$(1)" && install -d $(2) && \
18 install -C $(1) $(2)/$(shell basename $(1))
19 else
20- INSTX = echo -e " INST\t$(1)" && install -C $(1) $(2)/$(shell basename $(1))
21+ INSTX = echo -e " INST\t$(1)" && install -d $(2) && \
22+ install -C $(1) $(2)/$(shell basename $(1))
23 endif
24
25 MKDIR = echo -e " MKDIR\t$(1)" && mkdir -p $(1)
26--
272.32.0
28
diff --git a/meta-networking/recipes-support/netsniff-ng/netsniff-ng_0.6.8.bb b/meta-networking/recipes-support/netsniff-ng/netsniff-ng_0.6.9.bb
index 58ace6263d..6da17c7668 100644
--- a/meta-networking/recipes-support/netsniff-ng/netsniff-ng_0.6.8.bb
+++ b/meta-networking/recipes-support/netsniff-ng/netsniff-ng_0.6.9.bb
@@ -4,11 +4,8 @@ LICENSE = "GPL-2.0-only"
4LIC_FILES_CHKSUM = "file://COPYING;md5=9dd40dfb621eed702c0775577fbb7011" 4LIC_FILES_CHKSUM = "file://COPYING;md5=9dd40dfb621eed702c0775577fbb7011"
5DEPENDS = "libpcap" 5DEPENDS = "libpcap"
6 6
7SRCREV = "be3e706f00295024ebc199e70177343fdaebbc9e" 7SRCREV = "fb6183fe03b6eaa6c47b18de03b1745fa78633e4"
8SRC_URI = " \ 8SRC_URI = "git://github.com/netsniff-ng/netsniff-ng.git;protocol=https;branch=main;tag=v${PV}"
9 git://github.com/netsniff-ng/netsniff-ng.git;protocol=https;branch=master \
10 file://0001-Cmds-automatically-create-folder.patch \
11 "
12 9
13 10
14inherit pkgconfig 11inherit pkgconfig