summaryrefslogtreecommitdiff
path: root/root
Side-by-side diff
Diffstat (limited to 'root') (more/less context) (show whitespace changes)
-rwxr-xr-xroot/etc/init.d/opie8
1 files changed, 3 insertions, 5 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie
index 8146b2c..967646a 100755
--- a/root/etc/init.d/opie
+++ b/root/etc/init.d/opie
@@ -12,25 +12,27 @@ export PATH=$PATH:$OPIEDIR/bin
if [ -e /proc/cpuinfo ] ; then
model=`grep "^Hardware" /proc/cpuinfo | sed -e "s/.*: *//" | tr a-z A-Z`
case "$model" in
"HP IPAQ H3100" | "HP IPAQ H3800" )
export QWS_DISPLAY=Transformed:Rot90:0 ;;
"HP IPAQ H5400" | "HP JORNADA 56X" | "HP IPAQ H2200" | "SHARP Tosa")
export QWS_DISPLAY=Transformed:Rot0:0 ;;
*SIMPAD* )
export QWS_KEYBOARD='SIMpad'
export QWS_DISPLAY=Transformed:Rot0:0 ;;
-
+ RAMSES )
+ # already set based on /proc/sys/board/lcd_type
+ ;;
*)
export QWS_DISPLAY=Transformed:Rot270:0 ;;
esac
else
export QWS_DISPLAY=Transformed:Rot270:0
fi
if [ ! -x $OPIEDIR/bin/qpe ] ; then
echo Opie not installed
exit 0
fi
@@ -60,29 +62,25 @@ case $1 in
if [ -x $OPIEDIR/bin/opie-sh-ssh-askpass.sh ]; then
export SSH_ASKPASS=$OPIEDIR/bin/opie-sh-ssh-askpass.sh
fi
if ! killall -0 syslogd 2>/dev/null >/dev/null; then
echo Starting Opie....
$SSHAGENT $OPIEDIR/bin/qpe 2>/dev/null >/dev/null &
else
echo Starting Opie with syslog logging.....
( $SSHAGENT $OPIEDIR/bin/qpe 2>&1 | logger ) &
fi
fi
-
;;
'stop')
echo "Killing Opie..."
killall qpe
killall opie-login
-
;;
*)
echo "usage: $0 { start | stop }"
-
;;
esac
-