initscripts: add runtime dependency on util-linux umount

The initscripts package includes a '/etc/init.d/umountfs' script used
for reboot/poweroff purposes. That script calls the 'umount' command
but seems that the combination of busybox' umount + linux-3.x fails in
this script (it hangs without completing the reboot/poweroff).

So as a workaround use the umount command from util-linux package

https://jira.digi.com/browse/DEL-633

Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
Javier Viguera 2013-09-17 12:15:39 +02:00
parent 8bf9a739a5
commit 8ca43c4a78
1 changed files with 7 additions and 0 deletions

View File

@ -3,5 +3,12 @@
PRINC := "${@int(PRINC) + 1}" PRINC := "${@int(PRINC) + 1}"
PR_append = "+${DISTRO}" PR_append = "+${DISTRO}"
# The initscripts package includes a '/etc/init.d/umountfs' script used for
# reboot/poweroff purposes. That script calls the 'umount' command but seems
# that the combination of busybox' umount + linux 3.x fails in this script (it
# hangs without completing the reboot/poweroff)
# So as a workaround use the umount command from util-linux package
RDEPENDS_${PN} = "util-linux-umount"
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:" FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"