diff options
author | Ross Burton <ross.burton@intel.com> | 2015-01-12 11:57:17 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-11 17:39:48 +0000 |
commit | 66900dc504d8e8af5439a01f94c7853e418fd0e3 (patch) | |
tree | 15549e83462911373ccb9113160060be59ecf897 | |
parent | b93c62e03724defa6a1465575c7db95485be37fb (diff) | |
download | openembedded-core-66900dc504d8e8af5439a01f94c7853e418fd0e3.tar.gz openembedded-core-66900dc504d8e8af5439a01f94c7853e418fd0e3.tar.bz2 openembedded-core-66900dc504d8e8af5439a01f94c7853e418fd0e3.zip |
systemd: add missing RDEPENDS
systemd-ptest also needs a Python interpretter. Also remove the redundant
comment.
systemd-kernel-install is a bash script that can't be trivially ported to POSIX
sh.
(From OE-Core rev: 9f6b34493d332f9eff54c3eb2da9483a344e6d3c)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta/recipes-core/systemd/systemd_216.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/systemd/systemd_216.bb b/meta/recipes-core/systemd/systemd_216.bb index 8e1b5aaa7e..5e76f7c52f 100644 --- a/meta/recipes-core/systemd/systemd_216.bb +++ b/meta/recipes-core/systemd/systemd_216.bb @@ -192,8 +192,7 @@ RDEPENDS_${PN}-initramfs = "${PN}" FILES_libgudev = "${libdir}/libgudev*${SOLIBS}" -# The test cases need perl and bash to run correctly. -RDEPENDS_${PN}-ptest += "perl bash" +RDEPENDS_${PN}-ptest += "perl python bash" FILES_${PN}-ptest += "${libdir}/udev/rules.d" FILES_${PN}-dbg += "${libdir}/systemd/ptest/.debug" @@ -204,6 +203,7 @@ FILES_${PN}-vconsole-setup = "${rootlibexecdir}/systemd/systemd-vconsole-setup \ ${systemd_unitdir}/system/systemd-vconsole-setup.service \ ${systemd_unitdir}/system/sysinit.target.wants/systemd-vconsole-setup.service" +RDEPENDS_${PN}-kernel-install += "bash" FILES_${PN}-kernel-install = "${bindir}/kernel-install \ ${sysconfdir}/kernel/ \ ${exec_prefix}/lib/kernel \ |