mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-13 22:05:27 +01:00
Change summary from: https://software.es.net/iperf/news.html#iperf-3-19-released and RELNOTES links: iperf-3.20 fixes a number of bugs and also adds some minor enhancements. https://github.com/esnet/iperf/blob/master/RELNOTES.md#iperf-320-2025-11-14 iperf-3.19.1 is a security fix release to address three issues reported by Han Lee of Apple Information Security. https://github.com/esnet/iperf/blob/master/RELNOTES.md#iperf-3191-2025-07-25 iperf-3.19 includes support for MP-TCPv1 under Linux, keepalives on the control connection, support for the MSG_TRUNC receive option, and a number of minor bug fixes. https://github.com/esnet/iperf/blob/master/RELNOTES.md#iperf-319-2025-05-16 Drop 2 CVE patches that were backports. Drop 0001-configure.ac-check-for-CPP-prog.patch which is merged in: https://github.com/esnet/iperf/commit/beadb59b90e8 License-Update: The only changes were: ❯ git log --oneline 3.18..3.20 LICENSE 9f6dc21 Copyright updates for 2025. edf5c75 Fix typo in LICENSE Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
34 lines
1.1 KiB
BlitzBasic
34 lines
1.1 KiB
BlitzBasic
SUMMARY = "Network benchmark tool"
|
|
DESCRIPTION = "\
|
|
iperf is a tool for active measurements of the maximum achievable bandwidth \
|
|
on IP networks. It supports tuning of various parameters related to timing, \
|
|
protocols, and buffers. For each test it reports the bandwidth, loss, and \
|
|
other parameters."
|
|
|
|
HOMEPAGE = "http://software.es.net/iperf/"
|
|
SECTION = "console/network"
|
|
BUGTRACKER = "https://github.com/esnet/iperf/issues"
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=b51332d7f45357a9410daa9a14a3655f"
|
|
|
|
SRC_URI = "git://github.com/esnet/iperf.git;branch=master;protocol=https \
|
|
file://0002-Remove-pg-from-profile_CFLAGS.patch \
|
|
file://0001-configure.ac-check-for-CPP-prog.patch \
|
|
"
|
|
|
|
SRCREV = "0711330bacfaf1c2a804be66e7ecc26f481ede5d"
|
|
|
|
RDEPENDS:${PN} = "libgcc"
|
|
|
|
inherit autotools
|
|
|
|
PACKAGECONFIG ?= "openssl"
|
|
|
|
PACKAGECONFIG[lksctp] = "ac_cv_header_netinet_sctp_h=yes,ac_cv_header_netinet_sctp_h=no,lksctp-tools"
|
|
PACKAGECONFIG[openssl] = "--with-openssl=${RECIPE_SYSROOT}${prefix},--without-openssl,openssl"
|
|
|
|
CFLAGS += "-D_GNU_SOURCE"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|