Revert "initrd.scripts: busybox depmod doesn't support -v even though it declares so"

This reverts commit f3570c3957.
master
Fabio Erculiani 12 years ago
parent c408c1942a
commit 7ee24b6776

@ -116,7 +116,12 @@ plymouth_newroot() {
# fragile. See bug #472312
busybox_depmod_workaround() {
local depmod_args
[ -n "${QUIET}" ] && depmod_args="-q"
if [ -n "${DEBUG}" ]
then
depmod_args="-v"
elif [ -n "${QUIET}" ]; then
depmod_args="-q"
fi
depmod ${depmod_args}
}

Loading…
Cancel
Save