summaryrefslogtreecommitdiffstats
path: root/simple/simple_load
diff options
context:
space:
mode:
Diffstat (limited to 'simple/simple_load')
-rwxr-xr-xsimple/simple_load2
1 files changed, 1 insertions, 1 deletions
diff --git a/simple/simple_load b/simple/simple_load
index 5cd004d..a72e53c 100755
--- a/simple/simple_load
+++ b/simple/simple_load
@@ -12,7 +12,7 @@ fi
# invoke insmod with all arguments we got
# and use a pathname, as newer modutils don't look in . by default
-/sbin/insmod -f ./$module.ko $* || exit 1
+insmod ./$module.ko $* || exit 1
major=`cat /proc/devices | awk "\\$2==\"$module\" {print \\$1}"`