-rwxr-xr-x | root/etc/init.d/opie | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie index 0c9892c..b5a185e 100755 --- a/root/etc/init.d/opie +++ b/root/etc/init.d/opie @@ -14,13 +14,13 @@ export QPEDIR=/opt/QtPalmtop export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib export PATH=$PATH:$OPIEDIR/bin #this sets the iPaqs powerbutton to mapable echo 1 > /proc/sys/ts/suspend_button_mode -if [ ! -x $OPIEDIR/bin/opie ] ; then exit 0 ; fi +if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi $OPIEDIR/bin/opie-reorgfiles . /etc/profile killproc() { @@ -41,18 +41,18 @@ case $1 in "3600" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; "3700" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; "3800" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; *) echo "Unknown processor type -`module_id`-!" ;; esac - $OPIEDIR/bin/opie 2>/dev/null >/dev/null & + $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & ;; 'stop') echo "Killing Opie..." - killproc opie + killproc qpe ;; *) echo "usage: $0 { start | stop }" ;; esac |