diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2015-03-05 16:43:39 +0100 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-03-10 14:19:37 +0100 |
| commit | 800a0906c7a322f6c01e054901228fd5a10c36bd (patch) | |
| tree | b94a1e308bdb3450bcd5297bac9550876cd970e3 /meta-oe/recipes-kernel/ktap/ktap_git.bb | |
| parent | bdac062c685f40fe07e5d799d7486f347fe8976a (diff) | |
| download | meta-openembedded-800a0906c7a322f6c01e054901228fd5a10c36bd.tar.gz | |
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 <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-kernel/ktap/ktap_git.bb')
| -rw-r--r-- | meta-oe/recipes-kernel/ktap/ktap_git.bb | 26 |
1 files changed, 26 insertions, 0 deletions
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 @@ | |||
| 1 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
| 2 | |||
| 3 | require ktap.inc | ||
| 4 | |||
| 5 | SUMMARY = "KTAP is a scripting dynamic tracing tool for Linux" | ||
| 6 | DEPENDS = "ktap-module" | ||
| 7 | |||
| 8 | #Available package configs: | ||
| 9 | # libelf - needed to resolve symbols in DSO and for sdt | ||
| 10 | # ffi - only supports x86_64 for now!. Needs to be enabled for ktap-module too. | ||
| 11 | PACKAGECONFIG ?= "libelf" | ||
| 12 | |||
| 13 | PACKAGECONFIG[libelf] = ",,elfutils" | ||
| 14 | |||
| 15 | # Only build the userspace app | ||
| 16 | EXTRA_OEMAKE = "${@base_contains('PACKAGECONFIG', 'libelf', '', 'NO_LIBELF=1', d)} \ | ||
| 17 | ${@base_contains('PACKAGECONFIG', 'ffi', 'FFI=1', '', d)} \ | ||
| 18 | ktap" | ||
| 19 | |||
| 20 | do_install() { | ||
| 21 | install -d ${D}${bindir} | ||
| 22 | install -m 0755 ${S}/ktap ${D}${bindir}/ | ||
| 23 | } | ||
| 24 | |||
| 25 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 26 | RDEPENDS_${PN} = "kernel-module-ktapvm" | ||
