diff options
author | Lianhao Lu <lianhao.lu@intel.com> | 2012-03-21 17:41:07 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-21 15:33:06 +0000 |
commit | fb7eeb395402ce6ec923cd4be411de2ddbe61310 (patch) | |
tree | 1570f9b93c056da00329e224a06dc3e6c60b7c1a /meta/recipes-kernel/lttng-2.0/lttng2-ust_1.9.4.bb | |
parent | 5259a706ec53807fda6af690d0078307622af06a (diff) | |
download | poky-fb7eeb395402ce6ec923cd4be411de2ddbe61310.tar.gz |
lttng-2.0/lttng-ust: Change recipe name to lttng2-ust.
Change the recipe name lttng-ust from lttng-2.0 to lttng2-ust so that
that both the lttng-ust of the old framework and of the new framework
lttng-2.0 can coexist.
Fixed bug [YOCTO #2062].
(From OE-Core rev: 0d9fc8185945328837aa1a3d9d705afa56856853)
Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/lttng-2.0/lttng2-ust_1.9.4.bb')
-rw-r--r-- | meta/recipes-kernel/lttng-2.0/lttng2-ust_1.9.4.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-kernel/lttng-2.0/lttng2-ust_1.9.4.bb b/meta/recipes-kernel/lttng-2.0/lttng2-ust_1.9.4.bb new file mode 100644 index 0000000000..87d866e008 --- /dev/null +++ b/meta/recipes-kernel/lttng-2.0/lttng2-ust_1.9.4.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | SUMMARY = "Linux Trace Toolkit Userspace Tracer 2.0" | ||
2 | DESCRIPTION = "The LTTng UST 2.0 package contains the userspace tracer library to trace userspace codes." | ||
3 | HOMEPAGE = "http://lttng.org/lttng2.0" | ||
4 | BUGTRACKER = "n/a" | ||
5 | |||
6 | LICENSE = "LGPLv2.1+ & BSD" | ||
7 | LIC_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 | |||
11 | inherit autotools | ||
12 | |||
13 | DEPENDS = "liburcu util-linux" | ||
14 | |||
15 | SRCREV = "eeee05f35f014a8c068e0d29b18629cafbfdfc1d" | ||
16 | PV = "1.9.4+git${SRCPV}" | ||
17 | PR = "r0" | ||
18 | |||
19 | SRC_URI = "git://git.lttng.org/lttng-ust.git;protocol=git" | ||
20 | |||
21 | S = "${WORKDIR}/git" | ||
22 | |||
23 | do_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. | ||
30 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|powerpc.*)-linux' | ||