mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-08-15 17:28:04 +02:00
Ktap is a new scripting dynamic tracing tool for Linux. >From kernel v3.13 it'll live inside the kernel tree, but for earlier kernels, this recipe will be usefull. Signed-off-by: Anders Darander <anders@chargestorm.se> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
18 lines
359 B
BlitzBasic
18 lines
359 B
BlitzBasic
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
require ktap.inc
|
|
|
|
SUMMARY = "KTAP is a scripting dynamic tracing tool for Linux"
|
|
DEPENDS = "ktap-module"
|
|
|
|
# Only build the userspace app
|
|
EXTRA_OEMAKE = "ktap"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${S}/ktap ${D}${bindir}/
|
|
}
|
|
|
|
RDEPENDS_${PN} = "kernel-module-ktapvm"
|
|
|