diff options
author | Roy Li <rongqing.li@windriver.com> | 2015-07-01 09:54:14 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-08 15:25:21 +0100 |
commit | d0d641bf8cbf96d7c30dfcbdf2572d2709b56858 (patch) | |
tree | 0ac44bf653514a6dc5fe526f02069be4acd4cc42 /meta/recipes-devtools | |
parent | cf3e145bb6823fb22e2701a9a7e0623e4c4a1791 (diff) | |
download | openembedded-core-d0d641bf8cbf96d7c30dfcbdf2572d2709b56858.tar.gz openembedded-core-d0d641bf8cbf96d7c30dfcbdf2572d2709b56858.tar.bz2 openembedded-core-d0d641bf8cbf96d7c30dfcbdf2572d2709b56858.zip |
bootchart2: add runtime dependency
Bootchartd needs the command lsb_release and pidof to run, pidof maybe
provided by sysvinit or procpus;
To native bootchart2, only pybootchartgui is used, and which is not needed
both pidof and lsb_release
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/bootchart2/bootchart2_git.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/bootchart2/bootchart2_git.bb b/meta/recipes-devtools/bootchart2/bootchart2_git.bb index 5fc7211f79..ea9f179e8c 100644 --- a/meta/recipes-devtools/bootchart2/bootchart2_git.bb +++ b/meta/recipes-devtools/bootchart2/bootchart2_git.bb @@ -143,6 +143,8 @@ do_install () { PACKAGES =+ "pybootchartgui" FILES_pybootchartgui += "${libdir}/python*/site-packages/pybootchartgui ${bindir}/pybootchartgui" RDEPENDS_pybootchartgui = "python-pycairo python-compression python-image python-textutils python-shell python-compression python-codecs" +RDEPENDS_${PN}_class-target += "${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'sysvinit-pidof', 'procps', d)}" +RDEPENDS_${PN}_class-target += "lsb" DEPENDS_append_class-native = " python-pycairo-native" PACKAGES =+ "bootchartd-stop-initscript" |