summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xroot/etc/init.d/opie49
1 files changed, 34 insertions, 15 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie
index 09aebe0..01704f2 100755
--- a/root/etc/init.d/opie
+++ b/root/etc/init.d/opie
@@ -3,6 +3,2 @@
3 3
4module_id() {
5 cat /proc/hal/model
6}
7
8export LOGNAME=root 4export LOGNAME=root
@@ -17,5 +13,10 @@ export PATH=$PATH:$OPIEDIR/bin
17#this sets the iPaqs powerbutton to mapable 13#this sets the iPaqs powerbutton to mapable
18echo 1 > /proc/sys/ts/suspend_button_mode 14if [ -e /proc/sys/ts/suspend_button_mode ] ; then
15 echo 1 > /proc/sys/ts/suspend_button_mode
16fi
19 17
20if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi 18if [ ! -x $OPIEDIR/bin/qpe ] ; then
19 echo Opie not installed
20 exit 0
21fi
21 22
@@ -32,20 +33,37 @@ case $1 in
32'start') 33'start')
33 echo "Starting Opie..."
34 34
35 cd $HOME 35 cd $HOME
36
37 rm -f /etc/rc2.d/S99x # Can't have both running! 36 rm -f /etc/rc2.d/S99x # Can't have both running!
38 37
39 case `module_id` in 38 if [ -e /proc/hal/model ] ; then
40 "3100" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; 39
41 "3600" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; 40 IPAQ=`cat /proc/hal/model`
42 "3700" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; 41
43 "3800" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; 42 echo iPAQ type $IPAQ
44 *) echo "Unknown processor type -`module_id`-!" ;; 43 case $IPAQ in
45 esac 44 "3100" ) export QWS_DISPLAY=Transformed:Rot90:0 ;;
45 "3600" ) export QWS_DISPLAY=Transformed:Rot270:0 ;;
46 "3700" ) export QWS_DISPLAY=Transformed:Rot270:0 ;;
47 "3800" ) export QWS_DISPLAY=Transformed:Rot90:0 ;;
48 *) echo "Unknown processor type -`module_id`-!" ;;
49 esac
50 fi
51
46 52
47 if [ -x $OPIEDIR/bin/opie-login ]; then 53 if [ -x $OPIEDIR/bin/opie-login ]; then
54 if ! killall -0 syslogd 2>/dev/null >/dev/null; then
55 echo Starting Opie-login....
48 $OPIEDIR/bin/opie-login 2>/dev/null >/dev/null & 56 $OPIEDIR/bin/opie-login 2>/dev/null >/dev/null &
57 else
58 echo Starting Opie-login with syslog logging.....
59 ($OPIEDIR/bin/opie-login 2>&1 | logger ) &
60 fi
49 else 61 else
62 if ! killall -0 syslogd 2>/dev/null >/dev/null; then
63 echo Starting Opie....
50 $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & 64 $OPIEDIR/bin/qpe 2>/dev/null >/dev/null &
65 else
66 echo Starting Opie with syslog logging.....
67 ($OPIEDIR/bin/qpe 2>&1 | logger ) &
68 fi
51 fi 69 fi
@@ -60,2 +78,3 @@ case $1 in
60 fi 78 fi
79
61 killproc opie-login 80 killproc opie-login