author | chicken <chicken> | 2003-11-03 15:08:32 (UTC) |
---|---|---|
committer | chicken <chicken> | 2003-11-03 15:08:32 (UTC) |
commit | ce84f2d8bdd65c438821f0457cdad6bbbfa73380 (patch) (side-by-side diff) | |
tree | 023d6614ca2f2cb867a56fae60b0bdc4af20bb14 | |
parent | f232518989263ffaeb2987431b482bd151b26cb6 (diff) | |
download | opie-ce84f2d8bdd65c438821f0457cdad6bbbfa73380.zip opie-ce84f2d8bdd65c438821f0457cdad6bbbfa73380.tar.gz opie-ce84f2d8bdd65c438821f0457cdad6bbbfa73380.tar.bz2 |
add correct j56x rotation
-rwxr-xr-x | root/etc/init.d/opie | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie index 9e63b8f..5f454bd 100755 --- a/root/etc/init.d/opie +++ b/root/etc/init.d/opie @@ -18,32 +18,35 @@ if [ -e /proc/hal/model ] ; then "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 ;; "5400" ) export QWS_DISPLAY=Transformed:Rot0: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_KEYBOARD='SIMpad' export QWS_DISPLAY=Transformed:Rot0:0 fi + if (grep -qi "HP Jornada 56x" /proc/cpuinfo) ; then + export QWS_DISPLAY=Transformed:Rot0:0 + fi fi if [ ! -x $OPIEDIR/bin/qpe ] ; then echo Opie not installed exit 0 fi . /etc/profile case $1 in 'start') cd $HOME rm -f /etc/rc2.d/S99x # Can't have both running! if [ -x $OPIEDIR/bin/opie-login ]; then |