-rwxr-xr-x | etc/init.d/qpe | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/init.d/qpe b/etc/init.d/qpe index 5ff72ab..56f2f27 100755 --- a/etc/init.d/qpe +++ b/etc/init.d/qpe | |||
@@ -1,40 +1,44 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # | 2 | # |
3 | 3 | ||
4 | export LOGNAME=root | 4 | export LOGNAME=root |
5 | export HOME=/$LOGNAME | 5 | export HOME=/$LOGNAME |
6 | export QWS_DISPLAY=Transformed:Rot270:0 | 6 | export QWS_DISPLAY=Transformed:Rot270:0 |
7 | export QTDIR=/usr | 7 | export QTDIR=/usr |
8 | export OPIEDIR=/opt/QtPalmtop | 8 | export OPIEDIR=/opt/QtPalmtop |
9 | export QPEDIR=/opt/QtPalmtop | 9 | export QPEDIR=/opt/QtPalmtop |
10 | |||
11 | #this sets the iPaqs powerbutton to mapable | ||
12 | echo 1 > /proc/sys/ts/suspend_button_mode | ||
13 | |||
10 | if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi | 14 | if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi |
11 | 15 | ||
12 | $OPIEDIR/bin/qpe-reorgfiles | 16 | $OPIEDIR/bin/qpe-reorgfiles |
13 | 17 | ||
14 | . /etc/profile | 18 | . /etc/profile |
15 | 19 | ||
16 | killproc() { | 20 | killproc() { |
17 | pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` | 21 | pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` |
18 | [ "$pid" != "" ] && kill $pid | 22 | [ "$pid" != "" ] && kill $pid |
19 | } | 23 | } |
20 | 24 | ||
21 | case $1 in | 25 | case $1 in |
22 | 'start') | 26 | 'start') |
23 | echo "Starting QPE..." | 27 | echo "Starting QPE..." |
24 | 28 | ||
25 | cd $HOME | 29 | cd $HOME |
26 | 30 | ||
27 | rm -f /etc/rc2.d/S99x # Can't have both running! | 31 | rm -f /etc/rc2.d/S99x # Can't have both running! |
28 | 32 | ||
29 | $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & | 33 | $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & |
30 | 34 | ||
31 | ;; | 35 | ;; |
32 | 'stop') | 36 | 'stop') |
33 | echo "Killing QPE..." | 37 | echo "Killing QPE..." |
34 | killproc qpe | 38 | killproc qpe |
35 | ;; | 39 | ;; |
36 | *) | 40 | *) |
37 | echo "usage: $0 { start | stop }" | 41 | echo "usage: $0 { start | stop }" |
38 | ;; | 42 | ;; |
39 | esac | 43 | esac |
40 | 44 | ||