dracut-functions.sh: also search in the updates directory

master
Harald Hoyer 2014-01-30 14:27:18 +01:00
parent c8a9a6b4a7
commit f57850d7e8
1 changed files with 1 additions and 1 deletions

View File

@ -1551,7 +1551,7 @@ find_kernel_modules_by_path () {
_OLDIFS=$IFS
IFS=:
while read a rest; do
[[ $a = */$1/* ]] || continue
[[ $a = */$1/* ]] || [[ $a = */updates/* ]] || continue
printf "%s\n" "$srcmods/$a"
done < "$srcmods/modules.dep"
IFS=$_OLDIFS