[arch-projects] [MKINITCPIO][PATCH] Fix detection of not compressed modules

Sebastien Luttringer seblu at seblu.net
Mon Jun 13 18:32:22 EDT 2011


Function all_modules() doesn't correctly detect module extension.
It's a one char removing patch.

Signed-off-by: Sebastien Luttringer <seblu at 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



More information about the arch-projects mailing list