From 800a0906c7a322f6c01e054901228fd5a10c36bd Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 5 Mar 2015 16:43:39 +0100 Subject: ktap: rename recipes to indicate they are from git * set PV so that it shows git revision and also automatically rebuilds them when SRCREV is changed Signed-off-by: Martin Jansa --- meta-oe/recipes-kernel/ktap/ktap_git.bb | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 meta-oe/recipes-kernel/ktap/ktap_git.bb (limited to 'meta-oe/recipes-kernel/ktap/ktap_git.bb') diff --git a/meta-oe/recipes-kernel/ktap/ktap_git.bb b/meta-oe/recipes-kernel/ktap/ktap_git.bb new file mode 100644 index 0000000000..cbdabf82d8 --- /dev/null +++ b/meta-oe/recipes-kernel/ktap/ktap_git.bb @@ -0,0 +1,26 @@ +# 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" + +#Available package configs: +# libelf - needed to resolve symbols in DSO and for sdt +# ffi - only supports x86_64 for now!. Needs to be enabled for ktap-module too. +PACKAGECONFIG ?= "libelf" + +PACKAGECONFIG[libelf] = ",,elfutils" + +# Only build the userspace app +EXTRA_OEMAKE = "${@base_contains('PACKAGECONFIG', 'libelf', '', 'NO_LIBELF=1', d)} \ + ${@base_contains('PACKAGECONFIG', 'ffi', 'FFI=1', '', d)} \ + ktap" + +do_install() { + install -d ${D}${bindir} + install -m 0755 ${S}/ktap ${D}${bindir}/ +} + +PACKAGE_ARCH = "${MACHINE_ARCH}" +RDEPENDS_${PN} = "kernel-module-ktapvm" -- cgit 1.2.3-korg