summaryrefslogtreecommitdiffstats
path: root/recipes
diff options
context:
space:
mode:
authorGatis Paeglis <gatis.paeglis@theqtcompany.com>2015-10-16 11:11:32 +0200
committerGatis Paeglis <gatis.paeglis@digia.com>2015-10-16 11:24:16 +0000
commitf79cf6816751fd1db6ab80b935395c51ecb49e06 (patch)
tree42ffbda83b943c24b2dae0584cda05655dae4e71 /recipes
parente04ebf152624c99d2534e821676f3fab19c9bf22 (diff)
downloadmeta-boot2qt-f79cf6816751fd1db6ab80b935395c51ecb49e06.tar.gz
Dracut: add missing dependency
Running ./dracut --host-only fails because findmnt and setsid commands are missing from the sysroot. https://bugzilla.yoctoproject.org/show_bug.cgi?id=8522 Change-Id: I08785d521eca1508af20b83babfde106c0924a1d Reviewed-by: Samuli Piippo <samuli.piippo@theqtcompany.com>
Diffstat (limited to 'recipes')
-rw-r--r--recipes/dracut/dracut_git.bbappend2
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes/dracut/dracut_git.bbappend b/recipes/dracut/dracut_git.bbappend
index 4d04315..3e974cd 100644
--- a/recipes/dracut/dracut_git.bbappend
+++ b/recipes/dracut/dracut_git.bbappend
@@ -1,3 +1,5 @@
1# Upstream recipe mistakenly depends on systemd, we remove that dependency here. 1# Upstream recipe mistakenly depends on systemd, we remove that dependency here.
2RDEPENDS_${PN}_remove = "systemd" 2RDEPENDS_${PN}_remove = "systemd"
3REQUIRED_DISTRO_FEATURES_remove = "systemd" 3REQUIRED_DISTRO_FEATURES_remove = "systemd"
4# https://bugzilla.yoctoproject.org/show_bug.cgi?id=8522
5RDEPENDS_${PN} += "util-linux"