13 Jun
2011
13 Jun
'11
10:32 p.m.
Function all_modules() doesn't correctly detect module extension. It's a one char removing patch. Signed-off-by: Sebastien Luttringer <seblu@seblu.net> --- functions | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/functions b/functions index 75ea0a0..4da4d4e 100644 --- a/functions +++ b/functions @@ -56,7 +56,7 @@ all_modules () while read -r -d '' mod; do (( ++count )) mod=${mod##*/} - mod="${mod%.ko.*}" + mod="${mod%.ko*}" printf '%s\n' "${mod//-/_}" done < <(find "$MODULEDIR" -name '*.ko*' -print0 2>/dev/null | grep -Zz "$@") -- Sebastien "Seblu" Luttringer