summaryrefslogtreecommitdiff
path: root/root/etc/init.d/opie
authorsandman <sandman>2002-07-27 23:33:26 (UTC)
committer sandman <sandman>2002-07-27 23:33:26 (UTC)
commit4baf36396739502c5471950e29f18954cca4517b (patch) (unidiff)
tree46b25659b442666b4b5153fa8210d86e6708b47b /root/etc/init.d/opie
parent9cc89b6a54ee267953b0422c4607097d075ecab9 (diff)
downloadopie-4baf36396739502c5471950e29f18954cca4517b.zip
opie-4baf36396739502c5471950e29f18954cca4517b.tar.gz
opie-4baf36396739502c5471950e29f18954cca4517b.tar.bz2
Update for OPIE to use opie-login
Diffstat (limited to 'root/etc/init.d/opie') (more/less context) (ignore whitespace changes)
-rwxr-xr-xroot/etc/init.d/opie7
1 files changed, 6 insertions, 1 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie
index b5a185e..eed69c2 100755
--- a/root/etc/init.d/opie
+++ b/root/etc/init.d/opie
@@ -1,58 +1,63 @@
1#!/bin/sh 1#!/bin/sh
2# 2#
3 3
4module_id() { 4module_id() {
5 cat /proc/hal/model 5 cat /proc/hal/model
6} 6}
7 7
8export LOGNAME=root 8export LOGNAME=root
9export HOME=/$LOGNAME 9export HOME=/$LOGNAME
10#export QWS_DISPLAY=Transformed:Rot270:0 10#export QWS_DISPLAY=Transformed:Rot270:0
11export QTDIR=/opt/QtPalmtop 11export QTDIR=/opt/QtPalmtop
12export OPIEDIR=/opt/QtPalmtop 12export OPIEDIR=/opt/QtPalmtop
13export QPEDIR=/opt/QtPalmtop 13export QPEDIR=/opt/QtPalmtop
14export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib 14export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib
15export PATH=$PATH:$OPIEDIR/bin 15export PATH=$PATH:$OPIEDIR/bin
16 16
17#this sets the iPaqs powerbutton to mapable 17#this sets the iPaqs powerbutton to mapable
18echo 1 > /proc/sys/ts/suspend_button_mode 18echo 1 > /proc/sys/ts/suspend_button_mode
19 19
20if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi 20if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi
21 21
22$OPIEDIR/bin/opie-reorgfiles 22$OPIEDIR/bin/opie-reorgfiles
23 23
24. /etc/profile 24. /etc/profile
25 25
26killproc() { 26killproc() {
27 pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` 27 pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'`
28 [ "$pid" != "" ] && kill $pid 28 [ "$pid" != "" ] && kill $pid
29} 29}
30 30
31case $1 in 31case $1 in
32'start') 32'start')
33 echo "Starting Opie..." 33 echo "Starting Opie..."
34 34
35 cd $HOME 35 cd $HOME
36 36
37 rm -f /etc/rc2.d/S99x # Can't have both running! 37 rm -f /etc/rc2.d/S99x # Can't have both running!
38 38
39 case `module_id` in 39 case `module_id` in
40 "3100" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; 40 "3100" ) export QWS_DISPLAY=Transformed:Rot90:0 ;;
41 "3600" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; 41 "3600" ) export QWS_DISPLAY=Transformed:Rot270:0 ;;
42 "3700" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; 42 "3700" ) export QWS_DISPLAY=Transformed:Rot270:0 ;;
43 "3800" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; 43 "3800" ) export QWS_DISPLAY=Transformed:Rot90:0 ;;
44 *) echo "Unknown processor type -`module_id`-!" ;; 44 *) echo "Unknown processor type -`module_id`-!" ;;
45 esac 45 esac
46 46
47 $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & 47 if [ -x $OPIEDIR/bin/opie-login ]; then
48 $OPIEDIR/bin/opie-login 2>/dev/null >/dev/null &
49 else
50 $OPIEDIR/bin/qpe 2>/dev/null >/dev/null &
51 fi
48 52
49 ;; 53 ;;
50'stop') 54'stop')
51 echo "Killing Opie..." 55 echo "Killing Opie..."
52 killproc qpe 56 killproc qpe
57 killproc opie-login
53 ;; 58 ;;
54*) 59*)
55 echo "usage: $0 { start | stop }" 60 echo "usage: $0 { start | stop }"
56 ;; 61 ;;
57esac 62esac
58 63