Merge remote-tracking branch 'nmn/master'

This commit is contained in:
Stefan Eichenberger 2018-03-07 15:52:53 +01:00
commit a8a0075b17
6 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,25 @@
DESCRIPTION = "CPU Benchmarking bin"
HOMEPAGE = "http://www.netmodule.com/"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
PROVIDES = "benchmarking-cpu"
PV = "1.0.0"
SRC_URI = " \
file://dhry \
file://coremark \
file://memspeed \
"
FILES_${PN} += "/usr/bin/*"
S = "${WORKDIR}"
do_install () {
install -d ${D}/${bindir}
install -m 0755 ${S}/dhry ${D}/${bindir}
install -m 0755 ${S}/coremark ${D}/${bindir}
install -m 0755 ${S}/memspeed ${D}/${bindir}
}

View File

@ -18,6 +18,9 @@ BENCH_TOOLS = " \
iperf \ iperf \
strongswan \ strongswan \
gps-utils \ gps-utils \
ser2net \
speedtest-cli \
benchmarking-cpu \
" "
EASY_EDITOR = " \ EASY_EDITOR = " \

View File

@ -0,0 +1,19 @@
SUMMARY = "Speed Test tool"
DESCRIPTION = "Command line interface for testing internet bandwidth using speedtest.net"
PR = "r1"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
SRC_URI = "git://github.com/sivel/speedtest-cli.git;protocol=git "
SRCREV = "${AUTOREV}"
S = "${WORKDIR}/git"
RDEPENDS_${PN} = "python"
do_install () {
install -d -m 755 ${D}${bindir}/
install -m 755 speedtest.py ${D}${bindir}/
}
FILES_${PN} = " ${bindir}/speedtest.py"
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"