summaryrefslogtreecommitdiffstats
path: root/meta/packages/tasks
diff options
context:
space:
mode:
authorDexuan Cui <dexuan.cui@intel.com>2010-08-12 13:33:29 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-13 13:36:05 +0100
commit295e142488877d22225a7b787bdf326b94e0f780 (patch)
tree7fcc6f0fe2124f6a862173182f4b0982419f401f /meta/packages/tasks
parent56c5f2a679acc3363986cd35f91f2e5add2f0936 (diff)
downloadpoky-295e142488877d22225a7b787bdf326b94e0f780.tar.gz
task-poky-tools: fix RDEPENDS_task-poky-tools-profile and add lttng-ust into it
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>
Diffstat (limited to 'meta/packages/tasks')
-rw-r--r--meta/packages/tasks/task-poky-tools.bb14
1 files changed, 11 insertions, 3 deletions
diff --git a/meta/packages/tasks/task-poky-tools.bb b/meta/packages/tasks/task-poky-tools.bb
index 3872cd5633..1d6ec7031c 100644
--- a/meta/packages/tasks/task-poky-tools.bb
+++ b/meta/packages/tasks/task-poky-tools.bb
@@ -4,7 +4,7 @@
4 4
5DESCRIPTION = "Tools tasks for Poky" 5DESCRIPTION = "Tools tasks for Poky"
6LICENSE = "MIT" 6LICENSE = "MIT"
7PR = "r3" 7PR = "r4"
8 8
9PACKAGES = "\ 9PACKAGES = "\
10 task-poky-tools-debug \ 10 task-poky-tools-debug \
@@ -45,8 +45,16 @@ RDEPENDS_task-poky-tools-profile = "\
45# exmap-console 45# exmap-console
46# exmap-server 46# exmap-server
47 47
48 48# At present we only build lttng-ust on
49RDEPENDS_append_task-poky-tools-profile_qemux86 = "valgrind" 49# qemux86/qemux86-64/qemuppc/qemumips/emenlow/netbook since upstream liburcu
50# (which is required by lttng-ust) may not build on other platforms, like
51# qemu ARMv5te that poky uses now.
52RDEPENDS_task-poky-tools-profile_append_qemux86 = " valgrind lttng-ust"
53RDEPENDS_task-poky-tools-profile_append_qemux86-64 = " lttng-ust"
54RDEPENDS_task-poky-tools-profile_append_qemuppc = " lttng-ust"
55RDEPENDS_task-poky-tools-profile_append_qemumips = " lttng-ust"
56RDEPENDS_task-poky-tools-profile_append_emenlow = " lttng-ust"
57RDEPENDS_task-poky-tools-profile_append_netbook = " lttng-ust"
50 58
51RRECOMMENDS_task-poky-tools-profile = "\ 59RRECOMMENDS_task-poky-tools-profile = "\
52 kernel-module-oprofile" 60 kernel-module-oprofile"