author | kergoth <kergoth> | 2002-05-08 17:15:47 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-05-08 17:15:47 (UTC) |
commit | 8a293a84b7119bab0b84b5241c665ff5892faffc (patch) (unidiff) | |
tree | 2426d310899c8278ce1598cacff569551e53ed77 | |
parent | ad2c6f2e1b5504989ceed297d9ee8c49129ad1fb (diff) | |
download | opie-8a293a84b7119bab0b84b5241c665ff5892faffc.zip opie-8a293a84b7119bab0b84b5241c665ff5892faffc.tar.gz opie-8a293a84b7119bab0b84b5241c665ff5892faffc.tar.bz2 |
added LD_LIBRARY_PATH and PATH additions for OPIEDIR/lib and OPIEDIR/bin.
-rwxr-xr-x | etc/init.d/qpe | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/etc/init.d/qpe b/etc/init.d/qpe index 56f2f27..47a9b16 100755 --- a/etc/init.d/qpe +++ b/etc/init.d/qpe | |||
@@ -1,33 +1,35 @@ | |||
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 | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib | ||
11 | export PATH=$PATH:$OPIEDIR/bin | ||
10 | 12 | ||
11 | #this sets the iPaqs powerbutton to mapable | 13 | #this sets the iPaqs powerbutton to mapable |
12 | echo 1 > /proc/sys/ts/suspend_button_mode | 14 | echo 1 > /proc/sys/ts/suspend_button_mode |
13 | 15 | ||
14 | if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi | 16 | if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi |
15 | 17 | ||
16 | $OPIEDIR/bin/qpe-reorgfiles | 18 | $OPIEDIR/bin/qpe-reorgfiles |
17 | 19 | ||
18 | . /etc/profile | 20 | . /etc/profile |
19 | 21 | ||
20 | killproc() { | 22 | killproc() { |
21 | pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` | 23 | pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` |
22 | [ "$pid" != "" ] && kill $pid | 24 | [ "$pid" != "" ] && kill $pid |
23 | } | 25 | } |
24 | 26 | ||
25 | case $1 in | 27 | case $1 in |
26 | 'start') | 28 | 'start') |
27 | echo "Starting QPE..." | 29 | echo "Starting QPE..." |
28 | 30 | ||
29 | cd $HOME | 31 | cd $HOME |
30 | 32 | ||
31 | rm -f /etc/rc2.d/S99x # Can't have both running! | 33 | rm -f /etc/rc2.d/S99x # Can't have both running! |
32 | 34 | ||
33 | $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & | 35 | $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & |