summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-kernel/ktap/ktap.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-kernel/ktap/ktap.inc')
-rw-r--r--meta-oe/recipes-kernel/ktap/ktap.inc12
1 files changed, 12 insertions, 0 deletions
diff --git a/meta-oe/recipes-kernel/ktap/ktap.inc b/meta-oe/recipes-kernel/ktap/ktap.inc
index 2c94a08d6..e2e498f9f 100644
--- a/meta-oe/recipes-kernel/ktap/ktap.inc
+++ b/meta-oe/recipes-kernel/ktap/ktap.inc
@@ -11,4 +11,16 @@ SRC_URI = "git://github.com/ktap/ktap.git"
11S = "${WORKDIR}/git" 11S = "${WORKDIR}/git"
12 12
13# Package config is abused as a general compile time configuration tool. 13# Package config is abused as a general compile time configuration tool.
14
15# Only supports x86_64 for now!. Needs to be enabled for ktap-module too.
14PACKAGECONFIG[ffi] = "" 16PACKAGECONFIG[ffi] = ""
17
18# Needed to resolve symbols in DSO and for sdt
19PACKAGECONFIG[libelf] = ",,elfutils"
20
21PACKAGECONFIG ?= "libelf"
22
23EXTRA_OEMAKE = " \
24 ${@base_contains('PACKAGECONFIG', 'libelf', '', 'NO_LIBELF=1', d)} \
25 ${@base_contains('PACKAGECONFIG', 'ffi', 'FFI=1', '', d)} \
26"