-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,5 +1,5 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # | 2 | # |
3 | 3 | ||
4 | [ -z $LOGNAME ] && export LOGNAME=root | 4 | [ -z $LOGNAME ] && export LOGNAME=root |
5 | [ -z $HOME ] && export HOME=/$LOGNAME | 5 | [ -z $HOME ] && export HOME=/$LOGNAME |
@@ -13,7 +13,7 @@ export PATH=$PATH:$OPIEDIR/bin | |||
13 | if [ -e /proc/hal/model ] ; then | 13 | if [ -e /proc/hal/model ] ; then |
14 | ipaq=`cat /proc/hal/model` | 14 | ipaq=`cat /proc/hal/model` |
15 | 15 | ||
16 | case "$ipaq" in | 16 | case "$ipaq" in |
17 | "3100" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; | 17 | "3100" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; |
18 | "3600" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; | 18 | "3600" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; |
19 | "3700" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; | 19 | "3700" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; |
@@ -25,6 +25,13 @@ else | |||
25 | export QWS_DISPLAY=Transformed:Rot270:0 | 25 | export QWS_DISPLAY=Transformed:Rot270:0 |
26 | fi | 26 | fi |
27 | 27 | ||
28 | if [ -e /proc/cpuinfo ] ; then | ||
29 | if (grep -qi "Simpad" /proc/cpuinfo) ; then | ||
30 | |||
31 | export QWS_DISPLAY=Transformed:Rot0:0 | ||
32 | fi | ||
33 | fi | ||
34 | |||
28 | 35 | ||
29 | if [ ! -x $OPIEDIR/bin/qpe ] ; then | 36 | if [ ! -x $OPIEDIR/bin/qpe ] ; then |
30 | echo Opie not installed | 37 | echo Opie not installed |