forked from mavam/ml-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathml_manage.sh
More file actions
executable file
·57 lines (46 loc) · 790 Bytes
/
ml_manage.sh
File metadata and controls
executable file
·57 lines (46 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/sh
module="ml_driver"
devname="usb_device"
device="ml"
mode=664
group="plugdev"
replace_nodes()
{
# Remove stale nodes
rm -f /dev/${device}[0-3]
major=$(awk "\$2==\"${devname}\" {print \$1}" /proc/devices)
echo $major
for i in 0 1 2 3; do
mknod -m ${mode} "/dev/${device}${i}" c ${major} ${i}
echo mknod -m ${mode} "/dev/${device}${i}" c ${major} ${i}
done
chgrp ${group} /dev/${device}[0-3]
}
load()
{
shift
rmmod usbhid
insmod ./${module}.ko $* || exit 1
# The following screws up the properly created /dev/ml0 device on my system!
# replace_nodes
}
unload()
{
rmmod ${module} || exit 1
rm -f /dev/${device}[0-3]
}
case $1 in
load)
load $*
;;
unload)
unload
;;
reload)
unload
load $*
;;
*)
echo "usage: $0 <load|unload|reload>"
;;
esac