From: Harald Hoyer Date: Mon, 2 Jul 2012 20:14:49 +0000 (+0200) Subject: dracut-functions.sh: forgot --set-version $kernel for modprobe X-Git-Tag: 021~85 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ec61f0a3af894d2498d696464f12da2d500b9f39;p=thirdparty%2Fdracut.git dracut-functions.sh: forgot --set-version $kernel for modprobe --- diff --git a/dracut-functions.sh b/dracut-functions.sh index eabbb0deb..2898c3046 100755 --- a/dracut-functions.sh +++ b/dracut-functions.sh @@ -1201,7 +1201,8 @@ dracut_kernel_post() { local _moddirname=${srcmods%%/lib/modules/*} if [[ $DRACUT_KERNEL_LAZY_HASHDIR ]] && [[ -f "$DRACUT_KERNEL_LAZY_HASHDIR/lazylist" ]]; then - xargs -r modprobe -a ${_moddirname+-d ${_moddirname}/} --ignore-install --show-depends \ + xargs -r modprobe -a ${_moddirname+-d ${_moddirname}/} \ + --ignore-install --show-depends --set-version $kernel \ < "$DRACUT_KERNEL_LAZY_HASHDIR/lazylist" 2>/dev/null \ | sort -u \ | while read _cmd _modpath _options; do