summaryrefslogtreecommitdiff
path: root/root
authorsandman <sandman>2002-08-04 02:28:09 (UTC)
committer sandman <sandman>2002-08-04 02:28:09 (UTC)
commita8c65999503fa9ff34db3069c53bbc1685b521ec (patch) (unidiff)
treee56efb282ebbd9276448dddcb2a2c3fa9c1ef8be /root
parent8fd0780faa16abbcf7db9220af1bc333ae484ec8 (diff)
downloadopie-a8c65999503fa9ff34db3069c53bbc1685b521ec.zip
opie-a8c65999503fa9ff34db3069c53bbc1685b521ec.tar.gz
opie-a8c65999503fa9ff34db3069c53bbc1685b521ec.tar.bz2
Forgot this file in the last commit (fixes for SIGTERM handling)
Diffstat (limited to 'root') (more/less context) (ignore whitespace changes)
-rwxr-xr-xroot/etc/init.d/opie6
1 files changed, 5 insertions, 1 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie
index eed69c2..09aebe0 100755
--- a/root/etc/init.d/opie
+++ b/root/etc/init.d/opie
@@ -8,56 +8,60 @@ module_id() {
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 if [ -x $OPIEDIR/bin/opie-login ]; then 47 if [ -x $OPIEDIR/bin/opie-login ]; then
48 $OPIEDIR/bin/opie-login 2>/dev/null >/dev/null & 48 $OPIEDIR/bin/opie-login 2>/dev/null >/dev/null &
49 else 49 else
50 $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & 50 $OPIEDIR/bin/qpe 2>/dev/null >/dev/null &
51 fi 51 fi
52 52
53 ;; 53 ;;
54'stop') 54'stop')
55 echo "Killing Opie..." 55 echo "Killing Opie..."
56 killproc qpe 56 if [ -f /var/run/opie.pid ]; then
57 kill -TERM `cat /var/run/opie.pid`
58 else
59 killproc qpe
60 fi
57 killproc opie-login 61 killproc opie-login
58 ;; 62 ;;
59*) 63*)
60 echo "usage: $0 { start | stop }" 64 echo "usage: $0 { start | stop }"
61 ;; 65 ;;
62esac 66esac
63 67