summaryrefslogtreecommitdiffstats
path: root/scull/scull.init
diff options
context:
space:
mode:
authorDavis Abubakr-Sadik Nii Nai <dwa2pac@gmail.com>2013-12-18 01:24:34 +0000
committerDavis Abubakr-Sadik Nii Nai <dwa2pac@gmail.com>2013-12-18 01:24:34 +0000
commit8841360a79f36a7027a914575d8f1791a0d3a734 (patch)
tree85db476e98b0c78eb21801d2fd43054bca852fe8 /scull/scull.init
parent114b758b22d3dc9baae6559323fdf4ba7efedb67 (diff)
downloadldd3-8841360a79f36a7027a914575d8f1791a0d3a734.tar.gz
Fixed failure to load scull module and description typo in scull.init.
The scull.init initialization file fails to load scull module because it tries to load modules in the configured paths with .o suffix instead of .ko.
Diffstat (limited to 'scull/scull.init')
-rwxr-xr-xscull/scull.init10
1 files changed, 5 insertions, 5 deletions
diff --git a/scull/scull.init b/scull/scull.init
index e0523ce..3ac7339 100755
--- a/scull/scull.init
+++ b/scull/scull.init
@@ -1,5 +1,5 @@
#!/bin/bash
-# Sample init script for the a driver module <rubini@linux.it>
+# Sample init script for the scull driver module <rubini@linux.it>
DEVICE="scull"
SECTION="misc"
@@ -88,10 +88,10 @@ function remove_files () {
# Load and create files
function load_device () {
- if [ -f $MODDIR/$DEVICE.o ]; then
- devpath=$MODDIR/$DEVICE.o
- else if [ -f ./$DEVICE.o ]; then
- devpath=./$DEVICE.o
+ if [ -f $MODDIR/$DEVICE.ko ]; then
+ devpath=$MODDIR/$DEVICE.ko
+ else if [ -f ./$DEVICE.ko ]; then
+ devpath=./$DEVICE.ko
else
devpath=$DEVICE; # let insmod/modprobe guess
fi; fi