summaryrefslogtreecommitdiff
authorspiralman <spiralman>2002-10-18 21:24:25 (UTC)
committer spiralman <spiralman>2002-10-18 21:24:25 (UTC)
commiteea247f2664f0c70247399b2f4d969ddb00df7ba (patch) (unidiff)
treefe4e62a4ce136a94c82cae6a84a51b952e076b20
parent2ebb8c91374774171582f1a8ee4dbf4009a70615 (diff)
downloadopie-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)
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/tools/opie-sh/scripts/usbnetctrl.sh8
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 @@
19# 20020517-1 - added about, fullscreen and icon 19# 20020517-1 - added about, fullscreen and icon
20 20
21OPIE_SH=/opt/QtPalmtop/bin/opie-sh 21OPIE_SH=/opt/QtPalmtop/bin/opie-sh
22 22
23###################################################################### 23######################################################################
24# subroutines 24# subroutines
25 25
26about() { 26about() {
27 ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>" 27 ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>"
28 echo "<h3>About</h3>" 28 echo "<h3>About</h3>"
29 echo "This little App should make it easy for you to " 29 echo "This little App should make it easy for you to "
30 echo "activate / deactivate the usbnet-driver (on ipaq)" 30 echo "activate / deactivate the usbnet-driver (on ipaq)"
31 echo "<p>" 31 echo "<p>"
32 echo "To use it at first, you need to change the ifconfig" 32 echo "To use it at first, you need to change the ifconfig"
33 echo "line in /opt/QtPalmtop/bin/usbnetctrl.sh." 33 echo "line in /opt/QtPalmtop/bin/usbnetctrl.sh."
34 ) | $OPIE_SH -t "usbnet control" -f & 34 ) | $OPIE_SH -t "usbnet control" -f &
35 SCREENCLEAN=$! 35 SCREENCLEAN=$!
36 sleep 1 36 sleep 1
37} 37}
38 38
39startup() { 39startup() {
40 ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>" 40 ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>"
41 echo "<h3>usbnet up</h3>" 41 echo "<h3>usbnet up</h3>"
42 modprobe usb-eth 42 modprobe usb-eth
43 ) 2>&1 | $OPIE_SH -t Output -f
44
45 $OPIE_SH -m -I -t "Usbnet Control" -M "Please connect the<br>ipaq to the cradle<br>and press OK"
43 46
44 ifconfig usbf 10.3.0.226 netmask 255.255.255.0 \ 47 ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>"
45 broadcast 10.3.0.255 48 echo "<h3>usbnet up</h3>"
49 ifconfig usbf up 192.168.0.1 netmask 255.255.255.0
46 50
47 ) 2>&1 | $OPIE_SH -t Output -f 51 ) 2>&1 | $OPIE_SH -t Output -f
48 if [ -f /root/masq.sh ] 52 if [ -f /root/masq.sh ]
49 then sh /root/masq.sh 53 then sh /root/masq.sh
50 fi 54 fi
51} 55}
52 56
53stopit() { 57stopit() {
54 ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>" 58 ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/usbnetctrl.png>"
55 echo "<h3>usbnet down</h3>" 59 echo "<h3>usbnet down</h3>"
56 ifconfig usbf down 60 ifconfig usbf down
57 sleep 1 61 sleep 1
58 rmmod usb-eth 62 rmmod usb-eth
59 rmmod sa1100usb_core 63 rmmod sa1100usb_core
60 ) 2>&1 | $OPIE_SH -t Output -f 64 ) 2>&1 | $OPIE_SH -t Output -f
61} 65}
62 66
63 67
64cleanup() { 68cleanup() {
65 kill $SCREENCLEAN 69 kill $SCREENCLEAN
66 rm -f /tmp/qcop-msg-usbnetctrl.sh 70 rm -f /tmp/qcop-msg-usbnetctrl.sh
67} 71}
68 72
69 73