summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
Diffstat (limited to 'install')
-rw-r--r--install/autodetect5
1 files changed, 3 insertions, 2 deletions
diff --git a/install/autodetect b/install/autodetect
index 82dca3c..5c86eb0 100644
--- a/install/autodetect
+++ b/install/autodetect
@@ -28,7 +28,7 @@ install ()
for fs in ${fss}; do
allfs="${fs} $(modprobe --set-version ${KERNELVERSION} --resolve-alias ${fs})"
for mod in ${allfs}; do
- for modfile in $(find "${MODULEDIR}" -type f -name "${mod}.ko"); do
+ for modfile in $(find "${MODULEDIR}" -type f -name "${mod}.ko" -or -name "${mod}.ko.gz"); do
if [ -n "${modfile}" ]; then
AUTODETECT="${AUTODETECT} ${modfile}"
fi
@@ -54,7 +54,8 @@ install ()
fi
for m in ${AUTODETECT}; do
- modname="$(basename ${m%.ko})"
+ modname="${m%.gz}"
+ modname="$(basename ${modname%.ko})"
echo "${modname}" >> "${MODULE_FILE}"
done