diff options
| author | Tom Zanussi <tom.zanussi@intel.com> | 2012-10-12 04:43:46 (GMT) |
|---|---|---|
| committer | Tom Zanussi <tom.zanussi@intel.com> | 2012-10-16 04:50:47 (GMT) |
| commit | ea602300d9211669df0acc5c346e4486d6bf6f67 (patch) | |
| tree | 9d41675b19d506b65c0ffdfed72fe34601c1e751 | |
| parent | 83448c4b318ce60a54aae24a9a247456fa94caaf (diff) | |
| download | poky-contrib-ea602300d9211669df0acc5c346e4486d6bf6f67.zip poky-contrib-ea602300d9211669df0acc5c346e4486d6bf6f67.tar.gz poky-contrib-ea602300d9211669df0acc5c346e4486d6bf6f67.tar.bz2 | |
packagegroup-core-tools-profile: replace 'legacy' lttng with lttng 2.0tzanussi/switch-to-lttng2
packagegroup-core-tools-profile currently pulls in the 'legacy' lttng
packages, which are useless without legacy lttng support in the kernel.
This makes packagegroup-core-tools-profile pull in the lttng 2.0
packages instead, which don't need any kernel modifications to work.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
| -rw-r--r-- | meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb index 1035036..0ab2bc9 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb @@ -5,7 +5,7 @@ SUMMARY = "Profiling tools" LICENSE = "MIT" -PR = "r1" +PR = "r2" inherit packagegroup @@ -29,8 +29,7 @@ PROFILETOOLS = "\ oprofileui-server \ powertop \ latencytop \ - lttng-control \ - lttng-viewer" + " # systemtap needs elfutils which is not fully buildable on uclibc # hence we exclude it from uclibc based builds @@ -44,10 +43,22 @@ SYSTEMTAP_mips = "" # which means we can not use syscall() to call it. So we ignore # it for x86_64/uclibc -LTTNGUST = "lttng-ust" +LTTNGUST = "lttng2-ust" LTTNGUST_libc-uclibc = "" LTTNGUST_mips = "" +# lttng-tools, lttng-modules and babeltrace all depend on liburcu +# which currentl doesn't build on mips + +LTTNGTOOLS = "lttng-tools" +LTTNGTOOLS_mips = "" + +LTTNGMODULES = "lttng-modules" +LTTNGMODULES_mips = "" + +BABELTRACE = "babeltrace" +BABELTRACE_mips = "" + # valgrind does not work on mips VALGRIND = "valgrind" @@ -65,6 +76,9 @@ VALGRIND_arm = "" RDEPENDS_${PN} = "\ ${PROFILETOOLS} \ ${LTTNGUST} \ + ${LTTNGTOOLS} \ + ${LTTNGMODULES} \ + ${BABELTRACE} \ ${SYSTEMTAP} \ ${VALGRIND} \ " |
