mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-21 04:30:31 +00:00
* building ktap-module without elfutils fails with: ktap-module/0.4-r0/git/Makefile:107: No libelf found, disables symbol resolving, please install elfutils-libelf-devel/libelf-dev Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
20 lines
463 B
BlitzBasic
20 lines
463 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"
|
|
|
|
PNBLACKLIST[ktap] ?= "Depends on blacklisted kernel-module-ktapvm"
|
|
|
|
# Only build the userspace app
|
|
EXTRA_OEMAKE += "ktap"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${S}/ktap ${D}${bindir}/
|
|
}
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
RRECOMMENDS_${PN} = "kernel-module-ktapvm"
|