-rwxr-xr-x | etc/init.d/qpe | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/init.d/qpe b/etc/init.d/qpe index 12bb1df..8791e73 100755 --- a/etc/init.d/qpe +++ b/etc/init.d/qpe | |||
@@ -1,39 +1,39 @@ | |||
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 QPEDIR=/opt/QtPalmtop | 8 | export OPIEDIR=/opt/QtPalmtop |
9 | if [ ! -x $QPEDIR/bin/qpe ] ; then exit 0 ; fi | 9 | if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi |
10 | 10 | ||
11 | $QPEDIR/bin/qpe-reorgfiles | 11 | $OPIEDIR/bin/qpe-reorgfiles |
12 | 12 | ||
13 | . /etc/profile | 13 | . /etc/profile |
14 | 14 | ||
15 | killproc() { | 15 | killproc() { |
16 | pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` | 16 | pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` |
17 | [ "$pid" != "" ] && kill $pid | 17 | [ "$pid" != "" ] && kill $pid |
18 | } | 18 | } |
19 | 19 | ||
20 | case $1 in | 20 | case $1 in |
21 | 'start') | 21 | 'start') |
22 | echo "Starting QPE..." | 22 | echo "Starting QPE..." |
23 | 23 | ||
24 | cd $HOME | 24 | cd $HOME |
25 | 25 | ||
26 | rm -f /etc/rc2.d/S99x # Can't have both running! | 26 | rm -f /etc/rc2.d/S99x # Can't have both running! |
27 | 27 | ||
28 | $QPEDIR/bin/qpe 2>/dev/null >/dev/null & | 28 | $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & |
29 | 29 | ||
30 | ;; | 30 | ;; |
31 | 'stop') | 31 | 'stop') |
32 | echo "Killing QPE..." | 32 | echo "Killing QPE..." |
33 | killproc qpe | 33 | killproc qpe |
34 | ;; | 34 | ;; |
35 | *) | 35 | *) |
36 | echo "usage: $0 { start | stop }" | 36 | echo "usage: $0 { start | stop }" |
37 | ;; | 37 | ;; |
38 | esac | 38 | esac |
39 | 39 | ||