]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/network-suspend-scripts/files/usbnet
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / network-suspend-scripts / files / usbnet
1 #!/bin/sh
2 # Unloads/loads usb-eth so it always works
3
4 . /etc/default/usbd
5
6 if [ "$1" = suspend ]; then
7         rmmod usb-eth
8         rmmod sa1100usb_core
9         modprobe -r $usbdmodule
10 elif [ "$1" = resume ] && [ "$2" != standby ]; then
11         modprobe usb-eth
12         modprobe $usbdmodule
13 fi
14
15 : exit 0
16