diff options
author | Gatis Paeglis <gatis.paeglis@theqtcompany.com> | 2015-10-16 11:11:32 +0200 |
---|---|---|
committer | Gatis Paeglis <gatis.paeglis@digia.com> | 2015-10-16 11:24:16 +0000 |
commit | f79cf6816751fd1db6ab80b935395c51ecb49e06 (patch) | |
tree | 42ffbda83b943c24b2dae0584cda05655dae4e71 | |
parent | e04ebf152624c99d2534e821676f3fab19c9bf22 (diff) | |
download | meta-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>
-rw-r--r-- | recipes/dracut/dracut_git.bbappend | 2 |
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. |
2 | RDEPENDS_${PN}_remove = "systemd" | 2 | RDEPENDS_${PN}_remove = "systemd" |
3 | REQUIRED_DISTRO_FEATURES_remove = "systemd" | 3 | REQUIRED_DISTRO_FEATURES_remove = "systemd" |
4 | # https://bugzilla.yoctoproject.org/show_bug.cgi?id=8522 | ||
5 | RDEPENDS_${PN} += "util-linux" | ||