Files
meta-openembedded/meta-oe/recipes-kernel/ktap/ktap_0.3.bb
Anders Darander adb7af3fe9 ktap: add initial recipe
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>
2013-10-21 12:15:04 +02:00

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"