summaryrefslogtreecommitdiff
path: root/package/base-files/src/lib/mdev/init
blob: a478abecd5e2e7f819232d817f51b9c252e38f86 (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
#!/bin/sh
if [ "$SUBSYSTEM" == "pcmcia_socket" ];then
	logger "Setting up PCMCIA socket resource database"
	if [ "$ACTION" == "add" ];then
		/usr/sbin/pcmcia-socket-startup
	fi
fi
if [ "$SUBSYSTEM" == "usb" ];then
        if [ "$ACTION" == "add" ];then
                if [ "$DEVTYPE" == "usb_device" ];then
                        if [ "$PRODUCT" == "12d1/1003/0" ];then
				if [ ! -f /tmp/.huawei ];then
                        		logger "USB device added with: $PRODUCT"
					usbmods=$(lsmod|grep ^usbserial|awk '{ print $4 }'|sed -e 's/,/ /g')
					for i in $usbmods;do rmmod $i;done
					rmmod usbserial
					lsmod >> /tmp/debug
                                	test -x /sbin/huawei && /sbin/huawei >> /tmp/debug
					insmod /lib/modules/$(uname -r)/usbserial.ko product=0x1003 vendor=0x12d1
					for i in $usbmods;do insmod /lib/modules/$(uname -r)/$i.ko; done
					
					touch /tmp/.huawei
				fi
                        fi
                fi
        fi
fi