blob: a33a0f9907c08e6e13b641829c6f33cb397d29cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
SUMMARY = "Tick count tool"
DESCRIPTION = "Count number of kernel ticks during command execution."
SECTION = "utils"
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://LICENSE;md5=b52bab7a403562f36be803f11489f1a4"
PR = "r1"
RDEPENDS_${PN} = "bash"
SRC_URI = "git://github.com/OpenEneaLinux/rt-tools.git;branch=master \
file://run-ptest \
"
SRCREV = "9d4d1ce26b58ada516466c30e53c75c2961d6f0a"
inherit ptest
S = "${WORKDIR}/git"
FILES_${PN} += "/bin/*"
do_install() {
install -D ${S}/count_ticks/count_ticks ${D}/usr/bin/count_ticks
}
|