summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xroot/etc/init.d/opie4
1 files changed, 2 insertions, 2 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie
index 98711b1..05a9315 100755
--- a/root/etc/init.d/opie
+++ b/root/etc/init.d/opie
@@ -6,50 +6,50 @@
6 6
7export QTDIR=/opt/QtPalmtop 7export QTDIR=/opt/QtPalmtop
8export OPIEDIR=/opt/QtPalmtop 8export OPIEDIR=/opt/QtPalmtop
9export QPEDIR=/opt/QtPalmtop 9export QPEDIR=/opt/QtPalmtop
10export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib 10export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib
11export PATH=$PATH:$OPIEDIR/bin 11export PATH=$PATH:$OPIEDIR/bin
12 12
13if [ -e /proc/hal/model ] ; then 13if [ -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 ;;
20 "3800" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; 20 "3800" ) export QWS_DISPLAY=Transformed:Rot90:0 ;;
21 "3900" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; 21 "3900" ) export QWS_DISPLAY=Transformed:Rot270:0 ;;
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 28if [ -e /proc/cpuinfo ] ; then
29 if (grep -qi "Simpad" /proc/cpuinfo) ; then 29 if (grep -qi "Simpad" /proc/cpuinfo) ; then
30 30 export QWS_KEYBOARD='SIMpad'
31 export QWS_DISPLAY=Transformed:Rot0:0 31 export QWS_DISPLAY=Transformed:Rot0:0
32 fi 32 fi
33fi 33fi
34 34
35 35
36if [ ! -x $OPIEDIR/bin/qpe ] ; then 36if [ ! -x $OPIEDIR/bin/qpe ] ; then
37 echo Opie not installed 37 echo Opie not installed
38 exit 0 38 exit 0
39fi 39fi
40 40
41. /etc/profile 41. /etc/profile
42 42
43case $1 in 43case $1 in
44'start') 44'start')
45 cd $HOME 45 cd $HOME
46 rm -f /etc/rc2.d/S99x # Can't have both running! 46 rm -f /etc/rc2.d/S99x # Can't have both running!
47 47
48 if [ -x $OPIEDIR/bin/opie-login ]; then 48 if [ -x $OPIEDIR/bin/opie-login ]; then
49 if ! killall -0 syslogd 2>/dev/null >/dev/null; then 49 if ! killall -0 syslogd 2>/dev/null >/dev/null; then
50 echo Starting Opie-login.... 50 echo Starting Opie-login....
51 $OPIEDIR/bin/opie-login 2>/dev/null >/dev/null & 51 $OPIEDIR/bin/opie-login 2>/dev/null >/dev/null &
52 else 52 else
53 echo Starting Opie-login with syslog logging..... 53 echo Starting Opie-login with syslog logging.....
54 ( $OPIEDIR/bin/opie-login 2>&1 | logger ) & 54 ( $OPIEDIR/bin/opie-login 2>&1 | logger ) &
55 fi 55 fi