Merge remote-tracking branch 'nmn/master'
This commit is contained in:
commit
a8a0075b17
|
|
@ -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}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -18,6 +18,9 @@ BENCH_TOOLS = " \
|
||||||
iperf \
|
iperf \
|
||||||
strongswan \
|
strongswan \
|
||||||
gps-utils \
|
gps-utils \
|
||||||
|
ser2net \
|
||||||
|
speedtest-cli \
|
||||||
|
benchmarking-cpu \
|
||||||
"
|
"
|
||||||
|
|
||||||
EASY_EDITOR = " \
|
EASY_EDITOR = " \
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
Loading…
Reference in New Issue