summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/scripts/usbnetctrl.sh
authorspiralman <spiralman>2002-09-01 14:42:39 (UTC)
committer spiralman <spiralman>2002-09-01 14:42:39 (UTC)
commitdfac71239116c4804081d925e9cf3021680b1e2c (patch) (side-by-side diff)
treecf6a5c3897e9b73eb3415d470de95b77245abdad /noncore/tools/opie-sh/scripts/usbnetctrl.sh
parent27b087fc3458d3d0c01eb0485490a64b2a201541 (diff)
downloadopie-dfac71239116c4804081d925e9cf3021680b1e2c.zip
opie-dfac71239116c4804081d925e9cf3021680b1e2c.tar.gz
opie-dfac71239116c4804081d925e9cf3021680b1e2c.tar.bz2
initial import of gonz's opie-sh scripts
Diffstat (limited to 'noncore/tools/opie-sh/scripts/usbnetctrl.sh') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/tools/opie-sh/scripts/usbnetctrl.sh90
1 files changed, 90 insertions, 0 deletions
diff --git a/noncore/tools/opie-sh/scripts/usbnetctrl.sh b/noncore/tools/opie-sh/scripts/usbnetctrl.sh
new file mode 100755
index 0000000..a12f74b
--- a/dev/null
+++ b/noncore/tools/opie-sh/scripts/usbnetctrl.sh
@@ -0,0 +1,90 @@
+#!/bin/sh
+
+# usbnetctrl.sh - a demonstration of opie-sh
+#
+# Copyright (C) 2002 gonz@directbox.com
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# 20020524-1 - code beautification, added icons and reset
+# 20020517-2 - bugfixed fullscreen, added info about ifconfig
+# 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
+
+ ifconfig usbf 10.3.0.226 netmask 255.255.255.0 \
+ broadcast 10.3.0.255
+
+ ) 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
+}
+
+
+yesorno() {
+ $OPIE_SH -m -t "USB-Net start/stop" -M "What to do with usbnet: " \
+ -g -0 Start -1 Stop -2 Restart
+ RETURNCODE=$?
+
+ case $RETURNCODE in
+ -1) echo error...
+ cleanup
+ exit ;;
+ 0) startup ;;
+ 1) stopit ;;
+ 2) stopit ; sleep 1 ; startup ;;
+ esac
+}
+
+######################################################################
+# main
+
+about
+yesorno
+cleanup