From b5a5fb4486dee09287df825ecd1d2f8b76a98682 Mon Sep 17 00:00:00 2001 From: Martin Wilck Date: Fri, 29 Aug 2014 15:42:51 +0200 Subject: Find kernel modules in extra and weak-updates path also Signed-off-by: Thomas Renninger --- dracut-functions.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Index: dracut-042/dracut-functions.sh =================================================================== --- dracut-042.orig/dracut-functions.sh 2015-06-24 18:02:08.741336717 +0200 +++ dracut-042/dracut-functions.sh 2015-06-24 18:02:29.194501095 +0200 @@ -1657,7 +1657,7 @@ find_kernel_modules_by_path () { _OLDIFS=$IFS IFS=: while read a rest || [ -n "$a" ]; do - [[ $a = */$1/* ]] || [[ $a = updates/* ]] || continue + [[ $a = */$1/* ]] || [[ $a = updates/* ]] || [[ $a = extra/* ]] || [[ $a = weak-updates/* ]] || continue printf "%s\n" "$srcmods/$a" done < "$srcmods/modules.dep" IFS=$_OLDIFS