blob: 93e59afa55707c93cf0bc8c3853226f3ddb916be (
plain)
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
|
#!/bin/sh
MODULE="/lib/modules/`uname -r`/cx3110x.ko"
swap_module () {
if [ -e $MODULE ]; then
# Removing builtin driver
rmmod cx3110x
# Inserting the new one
insmod $MODULE
# Getting up the interface to make the firmware being loaded (stupid, i know)
ifconfig wlan0 up
else
echo "OOPS: $MODULE not found, the switch is not possible" 1>&2
fi
}
case "$1" in
start)
swap_module
;;
stop)
ifconfig $IFACE down
rmmod cx3110x
;;
force-reload | restart)
swap_module
;;
*)
echo "Usage: /etc/init.d/cx3110x {start|stop|restart|force-reload}"
exit 1
;;
esac
exit 0
|