summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/lttng-2.0
diff options
context:
space:
mode:
authorZumeng Chen <zumeng.chen@windriver.com>2012-01-16 23:46:02 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-17 14:53:26 +0000
commit6f3d52ec1137301c152389e834e1ffc58eb71b38 (patch)
treeba1643ee6a7ea8c994169536daf3cad2a71fdd33 /meta/recipes-kernel/lttng-2.0
parenta9095e5cb295e84ace2170bf8eb43180a0de6271 (diff)
downloadpoky-6f3d52ec1137301c152389e834e1ffc58eb71b38.tar.gz
lttng-ust: Update to 2.0
This patch intended to integrate the LTTng UST 2.0 package, which contains the userspace tracer library to trace userspace codes. (From OE-Core rev: 4ed09cb80196c7a3f691c8b9304df7c1fe4a8be5) Signed-off-by: Zumeng Chen <zumeng.chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/lttng-2.0')
-rw-r--r--meta/recipes-kernel/lttng-2.0/lttng-ust_1.9.4.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-kernel/lttng-2.0/lttng-ust_1.9.4.bb b/meta/recipes-kernel/lttng-2.0/lttng-ust_1.9.4.bb
new file mode 100644
index 0000000000..87d866e008
--- /dev/null
+++ b/meta/recipes-kernel/lttng-2.0/lttng-ust_1.9.4.bb
@@ -0,0 +1,30 @@
1SUMMARY = "Linux Trace Toolkit Userspace Tracer 2.0"
2DESCRIPTION = "The LTTng UST 2.0 package contains the userspace tracer library to trace userspace codes."
3HOMEPAGE = "http://lttng.org/lttng2.0"
4BUGTRACKER = "n/a"
5
6LICENSE = "LGPLv2.1+ & BSD"
7LIC_FILES_CHKSUM = "file://COPYING;md5=e647752e045a8c45b6f583771bd561ef \
8 file://snprintf/snprintf.c;endline=32;md5=d3d544959d8a3782b2e07451be0a903c \
9 file://snprintf/various.h;endline=31;md5=89f2509b6b4682c4fc95255eec4abe44"
10
11inherit autotools
12
13DEPENDS = "liburcu util-linux"
14
15SRCREV = "eeee05f35f014a8c068e0d29b18629cafbfdfc1d"
16PV = "1.9.4+git${SRCPV}"
17PR = "r0"
18
19SRC_URI = "git://git.lttng.org/lttng-ust.git;protocol=git"
20
21S = "${WORKDIR}/git"
22
23do_configure_prepend () {
24 ${S}/bootstrap
25}
26
27# Due to liburcu not building for MIPS currently this recipe needs to
28# be limited also.
29# So here let us first suppport x86/arm/powerpc platforms now.
30COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|powerpc.*)-linux'