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:
parent
8bf9a739a5
commit
8ca43c4a78
|
|
@ -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}:"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue