summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2003-05-23 13:53:26 (UTC)
committer mickeyl <mickeyl>2003-05-23 13:53:26 (UTC)
commit34b9974063032242e5de65fa56d4c2cb5e1ce565 (patch) (unidiff)
tree5d86b5fe812e653b3424ef02c1da8fbcca464ec3
parente79adf215b4354685f7563397651f3f5f6b65e86 (diff)
downloadopie-34b9974063032242e5de65fa56d4c2cb5e1ce565.zip
opie-34b9974063032242e5de65fa56d4c2cb5e1ce565.tar.gz
opie-34b9974063032242e5de65fa56d4c2cb5e1ce565.tar.bz2
add support for SIMpad which doesn't have a rotated framebuffer
Diffstat (more/less context) (show whitespace changes)
-rwxr-xr-xroot/etc/init.d/opie7
1 files changed, 7 insertions, 0 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
@@ -22,12 +22,19 @@ if [ -e /proc/hal/model ] ; then
22 *) echo "Unknown iPAQ model: $ipaq" ;; 22 *) echo "Unknown iPAQ model: $ipaq" ;;
23 esac 23 esac
24else 24else
25 export QWS_DISPLAY=Transformed:Rot270:0 25 export QWS_DISPLAY=Transformed:Rot270:0
26fi 26fi
27 27
28if [ -e /proc/cpuinfo ] ; then
29 if (grep -qi "Simpad" /proc/cpuinfo) ; then
30
31 export QWS_DISPLAY=Transformed:Rot0:0
32 fi
33fi
34
28 35
29if [ ! -x $OPIEDIR/bin/qpe ] ; then 36if [ ! -x $OPIEDIR/bin/qpe ] ; then
30 echo Opie not installed 37 echo Opie not installed
31 exit 0 38 exit 0
32fi 39fi
33 40