-rwxr-xr-x | root/etc/init.d/opie | 2 | ||||
-rw-r--r-- | root/etc/ppp/peers/opie-kppp | 3 | ||||
-rw-r--r-- | root/opt/QtPalmtop/etc/opie-login.conf | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie index 5f454bd..d49498c 100755 --- a/root/etc/init.d/opie +++ b/root/etc/init.d/opie @@ -1,96 +1,96 @@ #!/bin/sh # -[ -z $LOGNAME ] && export LOGNAME=root +[ -z $LOGNAME ] && export LOGNAME=root && export HOME=/root [ -z $HOME ] && export HOME=/$LOGNAME export QTDIR=/opt/QtPalmtop export OPIEDIR=/opt/QtPalmtop export QPEDIR=/opt/QtPalmtop export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib export PATH=$PATH:$OPIEDIR/bin if [ -e /proc/hal/model ] ; then ipaq=`cat /proc/hal/model` case "$ipaq" in "3100" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; "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 if ! killall -0 syslogd 2>/dev/null >/dev/null; then echo Starting Opie-login.... $OPIEDIR/bin/opie-login 2>/dev/null >/dev/null & else echo Starting Opie-login with syslog logging..... ( $OPIEDIR/bin/opie-login 2>&1 | logger ) & fi else $OPIEDIR/bin/opie-reorgfiles if [ -x /usr/bin/ssh-agent ]; then SSHAGENT=/usr/bin/ssh-agent else SSHAGENT="" fi 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 diff --git a/root/etc/ppp/peers/opie-kppp b/root/etc/ppp/peers/opie-kppp new file mode 100644 index 0000000..2b349d9 --- a/dev/null +++ b/root/etc/ppp/peers/opie-kppp @@ -0,0 +1,3 @@ +noauth +name opie-kppp +usepeerdns diff --git a/root/opt/QtPalmtop/etc/opie-login.conf b/root/opt/QtPalmtop/etc/opie-login.conf new file mode 100644 index 0000000..13195b1 --- a/dev/null +++ b/root/opt/QtPalmtop/etc/opie-login.conf @@ -0,0 +1,2 @@ +[General] +AutoLogin = root |