From: Harald Hoyer Date: Fri, 22 Jun 2012 13:10:11 +0000 (+0200) Subject: dracut-functions.sh:find_kernel_modules_by_path() use IFS=: X-Git-Tag: 020~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=744054779febc72178dbc22127ebfcca93e7b861;p=thirdparty%2Fdracut.git dracut-functions.sh:find_kernel_modules_by_path() use IFS=: For modules.dep use simpler IFS=: to read the file. --- diff --git a/dracut-functions.sh b/dracut-functions.sh index 9861bb799..cecd59a4a 100755 --- a/dracut-functions.sh +++ b/dracut-functions.sh @@ -1115,17 +1115,22 @@ for_each_kmod_dep() { find_kernel_modules_by_path () ( + local _OLDIFS if ! [[ $hostonly ]]; then + _OLDIFS=$IFS + IFS=: while read a rest; do if [[ "${a##kernel}" != "$a" ]]; then [[ "${a##kernel/$1}" != "$a" ]] || continue fi - echo $srcmods/${a%:} + echo $srcmods/$a done < $srcmods/modules.dep + IFS=$_OLDIFS else ( cd /sys/module; echo *; ) \ | xargs modinfo -F filename -k $kernel 2>/dev/null fi + return 0 ) find_kernel_modules () {