diff --git a/dracut-functions b/dracut-functions index 9ac0bba3..eef8f1ed 100755 --- a/dracut-functions +++ b/dracut-functions @@ -670,7 +670,7 @@ install_kmod_with_fw() { for_each_kmod_dep() { local func=$1 kmod=$2 cmd modpapth options shift 2 - modprobe "$@" --ignore-install --show-depends $kmod 2>/dev/null | \ + modprobe "$@" --ignore-install --quiet --show-depends $kmod | \ while read cmd modpath options; do [[ $cmd = insmod ]] || continue $func $modpath diff --git a/dracut-gencmdline b/dracut-gencmdline index 76c91acd..90e49065 100755 --- a/dracut-gencmdline +++ b/dracut-gencmdline @@ -72,7 +72,7 @@ moduledep() { fi vecho -n "Looking for deps of module $1" deps="" - deps=$(modprobe $MPARGS --set-version $kernel --show-depends $1 2>/dev/null| awk '/^insmod / { print gensub(".*/","","g",$2) }' | while read foo ; do [ "${foo%%.ko}" != "$1" ] && echo -n "${foo%%.ko} " ; done) + deps=$(modprobe $MPARGS --set-version $kernel --quiet --show-depends $1 | awk '/^insmod / { print gensub(".*/","","g",$2) }' | while read foo ; do [ "${foo%%.ko}" != "$1" ] && echo -n "${foo%%.ko} " ; done) [ -n "$deps" ] && vecho ": $deps" || vecho }