From: Victor Lowther Date: Fri, 6 Mar 2009 19:51:28 +0000 (-0600) Subject: Make calling modprobe look prettier. X-Git-Tag: 0.1~334 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=992acaa9d021146990c3183a15dc0dd4039ac9b4;p=thirdparty%2Fdracut.git Make calling modprobe look prettier. --- diff --git a/dracut-functions b/dracut-functions index 77857a4de..1a2d28c98 100755 --- a/dracut-functions +++ b/dracut-functions @@ -195,7 +195,7 @@ instmods() { while (($# > 0)); do mod=${1%.ko} case $mod in - =*) # This introduces 2 incompatible menaings for =* arguments + =*) # This introduces 2 incompatible meanings for =* arguments # to instmods. We need to decide which one to keep. if [ "$mod" = "=ata" -a -f $srcmods/modules.block ] ; then instmods $mpargs $(egrep 'ata|ahci' "${srcmods}/modules.block") @@ -207,8 +207,9 @@ instmods() { ;; --*) mpargs+=" $mod";; *) mod=${mod##*/} - modprobe $mpargs --ignore-install --set-version $kernel --show-depends $mod \ - 2>/dev/null |while read cmd modpath options; do + modprobe $mpargs --ignore-install --set-version $kernel \ + --show-depends $mod 2>/dev/null | \ + while read cmd modpath options; do [[ $cmd = insmod ]] || continue modname=${modpath##*/} modname=${modname%.ko}