dev-image: Add benchmarking tools

This commit is contained in:
Alexandre Bard 2018-03-02 16:24:41 +01:00
parent 3f313fa4a3
commit 12f09e0f2a
5 changed files with 26 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

@ -20,6 +20,7 @@ BENCH_TOOLS = " \
gps-utils \ gps-utils \
ser2net \ ser2net \
speedtest-cli \ speedtest-cli \
benchmarking-cpu \
" "
EASY_EDITOR = " \ EASY_EDITOR = " \