dev-image: Add benchmarking tools
This commit is contained in:
parent
3f313fa4a3
commit
12f09e0f2a
|
|
@ -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.
|
|
@ -20,6 +20,7 @@ BENCH_TOOLS = " \
|
||||||
gps-utils \
|
gps-utils \
|
||||||
ser2net \
|
ser2net \
|
||||||
speedtest-cli \
|
speedtest-cli \
|
||||||
|
benchmarking-cpu \
|
||||||
"
|
"
|
||||||
|
|
||||||
EASY_EDITOR = " \
|
EASY_EDITOR = " \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue