From patchwork Tue Nov 13 17:26:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/3] packagegroup-core-tools-profile: replace 'legacy' lttng with lttng 2.0 Date: Tue, 13 Nov 2012 17:26:17 -0000 From: Tom Zanussi X-Patchwork-Id: 38935 Message-Id: <18c50380955170a2cc9faba956f184b5bbe971dc.1352826909.git.tom.zanussi@intel.com> To: ross.burton@intel.com, openembedded-core@lists.openembedded.org From: Tom Zanussi 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. (From OE-Core rev: f1f9d08ea8b32b0a51a1e3f7bcf488ba7e9dc21e) Signed-off-by: Tom Zanussi Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- .../packagegroup-core-tools-profile.bb | 25 ++++++++++++++++++---- 1 file changed, 21 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..edf41b1 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,25 @@ 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 = "" +LTTNGTOOLS_aarch64 = "" + +LTTNGMODULES = "lttng-modules" +LTTNGMODULES_mips = "" +LTTNGMODULES_aarch64 = "" + +BABELTRACE = "babeltrace" +BABELTRACE_mips = "" +BABELTRACE_aarch64 = "" + # valgrind does not work on mips VALGRIND = "valgrind" @@ -65,6 +79,9 @@ VALGRIND_arm = "" RDEPENDS_${PN} = "\ ${PROFILETOOLS} \ ${LTTNGUST} \ + ${LTTNGTOOLS} \ + ${LTTNGMODULES} \ + ${BABELTRACE} \ ${SYSTEMTAP} \ ${VALGRIND} \ "