]> code.ossystems Code Review - openembedded-core.git/commitdiff
task-poky-tools: fix RDEPENDS_task-poky-tools-profile and add lttng-ust into it
authorDexuan Cui <dexuan.cui@intel.com>
Thu, 12 Aug 2010 05:33:29 +0000 (13:33 +0800)
committerRichard Purdie <rpurdie@linux.intel.com>
Fri, 13 Aug 2010 12:36:05 +0000 (13:36 +0100)
Here the "_append" must appear just after RDEPENDS_task-poky-tools-profile, or
else, valgrind and lttng-ust won't be built into the target image.

At present we only build lttng-ust on
qemux86/qemux86-64/qemuppc/qemumips/emenlow/netbook since upstream liburcu
(which is required by lttng-ust) may not build on other platforms, like
qemu ARMv5te that poky uses now.

Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
meta/packages/tasks/task-poky-tools.bb

index 3872cd563375f41ef44f26ef80ae4be60b4ad783..1d6ec7031c80796e46ddce684f9706d2b6589546 100644 (file)
@@ -4,7 +4,7 @@
 
 DESCRIPTION = "Tools tasks for Poky"
 LICENSE = "MIT"
-PR = "r3"
+PR = "r4"
 
 PACKAGES = "\
     task-poky-tools-debug \
@@ -45,8 +45,16 @@ RDEPENDS_task-poky-tools-profile = "\
 #    exmap-console
 #    exmap-server
 
-
-RDEPENDS_append_task-poky-tools-profile_qemux86 = "valgrind"
+# At present we only build lttng-ust on
+# qemux86/qemux86-64/qemuppc/qemumips/emenlow/netbook since upstream liburcu
+# (which is required by lttng-ust) may not build on other platforms, like
+# qemu ARMv5te that poky uses now.
+RDEPENDS_task-poky-tools-profile_append_qemux86 = " valgrind lttng-ust"
+RDEPENDS_task-poky-tools-profile_append_qemux86-64 = " lttng-ust"
+RDEPENDS_task-poky-tools-profile_append_qemuppc = " lttng-ust"
+RDEPENDS_task-poky-tools-profile_append_qemumips = " lttng-ust"
+RDEPENDS_task-poky-tools-profile_append_emenlow = " lttng-ust"
+RDEPENDS_task-poky-tools-profile_append_netbook = " lttng-ust"
 
 RRECOMMENDS_task-poky-tools-profile = "\
     kernel-module-oprofile"