author | spiralman <spiralman> | 2002-10-18 21:24:25 (UTC) |
---|---|---|
committer | spiralman <spiralman> | 2002-10-18 21:24:25 (UTC) |
commit | eea247f2664f0c70247399b2f4d969ddb00df7ba (patch) (side-by-side diff) | |
tree | fe4e62a4ce136a94c82cae6a84a51b952e076b20 /noncore | |
parent | 2ebb8c91374774171582f1a8ee4dbf4009a70615 (diff) | |
download | opie-eea247f2664f0c70247399b2f4d969ddb00df7ba.zip opie-eea247f2664f0c70247399b2f4d969ddb00df7ba.tar.gz opie-eea247f2664f0c70247399b2f4d969ddb00df7ba.tar.bz2 |
fixed usbnetctrl.sh to work with fam 0.6 (interface is now created after the ipaq is connected to the cradle)
-rwxr-xr-x | noncore/tools/opie-sh/scripts/usbnetctrl.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/tools/opie-sh/scripts/usbnetctrl.sh b/noncore/tools/opie-sh/scripts/usbnetctrl.sh index a12f74b..417435e 100755 --- a/noncore/tools/opie-sh/scripts/usbnetctrl.sh +++ b/noncore/tools/opie-sh/scripts/usbnetctrl.sh @@ -19,51 +19,55 @@ # 20020517-1 - added about, fullscreen and icon OPIE_SH=/opt/QtPalmtop/bin/opie-sh ###################################################################### # subroutines about() { ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>" echo "<h3>About</h3>" echo "This little App should make it easy for you to " echo "activate / deactivate the usbnet-driver (on ipaq)" echo "<p>" echo "To use it at first, you need to change the ifconfig" echo "line in /opt/QtPalmtop/bin/usbnetctrl.sh." ) | $OPIE_SH -t "usbnet control" -f & SCREENCLEAN=$! sleep 1 } startup() { ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>" echo "<h3>usbnet up</h3>" modprobe usb-eth + ) 2>&1 | $OPIE_SH -t Output -f + + $OPIE_SH -m -I -t "Usbnet Control" -M "Please connect the<br>ipaq to the cradle<br>and press OK" - ifconfig usbf 10.3.0.226 netmask 255.255.255.0 \ - broadcast 10.3.0.255 + ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>" + echo "<h3>usbnet up</h3>" + ifconfig usbf up 192.168.0.1 netmask 255.255.255.0 ) 2>&1 | $OPIE_SH -t Output -f if [ -f /root/masq.sh ] then sh /root/masq.sh fi } stopit() { ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>" echo "<h3>usbnet down</h3>" ifconfig usbf down sleep 1 rmmod usb-eth rmmod sa1100usb_core ) 2>&1 | $OPIE_SH -t Output -f } cleanup() { kill $SCREENCLEAN rm -f /tmp/qcop-msg-usbnetctrl.sh } |