mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-15 14:48:47 +00:00
If you want to use iperf3 to measure your board's IP performance, you may also want to compile if for the build host, because unlike iperf, iperf3 isn't readily available as a standard Ubuntu package for example. Add a BBCLASSEXTEND="native" to the recipe so that you just can build iperf3-native and have bitbake compile it for you, instead of having to download, compile and install it manually on the build machine. Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
27 lines
894 B
BlitzBasic
27 lines
894 B
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"
|
|
AUTHOR = "ESNET <info@es.net>, Lawrence Berkeley National Laboratory <websupport@lbl.gov>"
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=ab59a0c3a4bc3954d1ece68ea19d77a4"
|
|
|
|
SRC_URI = "\
|
|
git://github.com/esnet/iperf.git;branch=3.0-STABLE \
|
|
file://automake-foreign.patch \
|
|
file://fix-examples.patch \
|
|
"
|
|
|
|
PV = "3.0.10+gitr${SRCPV}"
|
|
SRCREV = "de420cc741dd8967ebc57f80b7712556442de81b"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools
|
|
BBCLASSEXTEND = "native"
|