summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/scripts/usbnetctrl.sh
blob: af68a3daac38a83425f80a335213cc52f44af7c9 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/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=$OPIEDIR/bin/opie-sh

######################################################################
# subroutines

about() {
	( echo "<img src=$OPIEDIR/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 $OPIEDIR/bin/usbnetctrl.sh."
        )  | $OPIE_SH -t "usbnet control" -f  &
	SCREENCLEAN=$!
	sleep 1
}

startup() {
	  ( echo "<img src=$OPIEDIR/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"

	 ( echo "<img src=$OPIEDIR/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=$OPIEDIR/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