-rwxr-xr-x | root/etc/init.d/opie | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie index 8151b8f..98711b1 100755 --- a/root/etc/init.d/opie +++ b/root/etc/init.d/opie @@ -1,8 +1,8 @@ #!/bin/sh -# +# [ -z $LOGNAME ] && export LOGNAME=root [ -z $HOME ] && export HOME=/$LOGNAME export QTDIR=/opt/QtPalmtop export OPIEDIR=/opt/QtPalmtop @@ -10,24 +10,31 @@ export QPEDIR=/opt/QtPalmtop export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib export PATH=$PATH:$OPIEDIR/bin if [ -e /proc/hal/model ] ; then ipaq=`cat /proc/hal/model` - case "$ipaq" in + case "$ipaq" in "3100" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; "3600" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; "3700" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; "3800" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; "3900" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; *) echo "Unknown iPAQ model: $ipaq" ;; esac else export QWS_DISPLAY=Transformed:Rot270:0 fi +if [ -e /proc/cpuinfo ] ; then + if (grep -qi "Simpad" /proc/cpuinfo) ; then + + export QWS_DISPLAY=Transformed:Rot0:0 + fi +fi + if [ ! -x $OPIEDIR/bin/qpe ] ; then echo Opie not installed exit 0 fi |