diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-03-23 11:09:04 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-25 10:29:18 +0000 |
commit | e7395c8063fdc1df8e15dc8de4afdadbf814eadf (patch) | |
tree | 28dd2148bd71ddbd33ecf70ed5de49b3cd51437c /meta/recipes-kernel/perf | |
parent | b47225f0e803ee91629282e940e6ddc9633e5e54 (diff) | |
download | poky-e7395c8063fdc1df8e15dc8de4afdadbf814eadf.tar.gz |
perf: package python modules into perf-python
The scripts that are part of perf require python and supporting modules.
The existing perf-pyton dependency only brought in core python, which
left us unable to actually execute the scripts on target.
With this additional runtime dependency, we can now execte the sample
analysis scripts when perf-scripting is availble.
This is a partial fix for [YOCTO #9069], since there are still scripts
looking for non-existent modules, and those will be dealt with in
future releases.
(From OE-Core rev: 1aa2d2a5e91fddb80c792d6c2ff5fd2e80c751eb)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/perf')
-rw-r--r-- | meta/recipes-kernel/perf/perf.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb index e9c5c0c9f3..c43f39cd1d 100644 --- a/meta/recipes-kernel/perf/perf.bb +++ b/meta/recipes-kernel/perf/perf.bb | |||
@@ -201,7 +201,7 @@ PACKAGES =+ "${PN}-archive ${PN}-tests ${PN}-perl ${PN}-python" | |||
201 | 201 | ||
202 | RDEPENDS_${PN} += "elfutils bash" | 202 | RDEPENDS_${PN} += "elfutils bash" |
203 | RDEPENDS_${PN}-archive =+ "bash" | 203 | RDEPENDS_${PN}-archive =+ "bash" |
204 | RDEPENDS_${PN}-python =+ "bash python" | 204 | RDEPENDS_${PN}-python =+ "bash python python-modules" |
205 | RDEPENDS_${PN}-perl =+ "bash perl perl-modules" | 205 | RDEPENDS_${PN}-perl =+ "bash perl perl-modules" |
206 | RDEPENDS_${PN}-tests =+ "python" | 206 | RDEPENDS_${PN}-tests =+ "python" |
207 | 207 | ||