author | chicken <chicken> | 2003-11-02 21:17:15 (UTC) |
---|---|---|
committer | chicken <chicken> | 2003-11-02 21:17:15 (UTC) |
commit | f232518989263ffaeb2987431b482bd151b26cb6 (patch) (unidiff) | |
tree | ab67b137f9378ba3c8f2b50ae4cd2c5fb06a518f | |
parent | 559f4034cd483845b107aa7180f56e701c1444e6 (diff) | |
download | opie-f232518989263ffaeb2987431b482bd151b26cb6.zip opie-f232518989263ffaeb2987431b482bd151b26cb6.tar.gz opie-f232518989263ffaeb2987431b482bd151b26cb6.tar.bz2 |
add h5xxx just to make sure
-rwxr-xr-x | root/etc/init.d/opie | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie index 05a9315..9e63b8f 100755 --- a/root/etc/init.d/opie +++ b/root/etc/init.d/opie | |||
@@ -1,45 +1,46 @@ | |||
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 |
6 | 6 | ||
7 | export QTDIR=/opt/QtPalmtop | 7 | export QTDIR=/opt/QtPalmtop |
8 | export OPIEDIR=/opt/QtPalmtop | 8 | export OPIEDIR=/opt/QtPalmtop |
9 | export QPEDIR=/opt/QtPalmtop | 9 | export QPEDIR=/opt/QtPalmtop |
10 | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib | 10 | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib |
11 | export PATH=$PATH:$OPIEDIR/bin | 11 | export PATH=$PATH:$OPIEDIR/bin |
12 | 12 | ||
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 ;; |
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 | "5400" ) export QWS_DISPLAY=Transformed:Rot0:0 ;; | ||
22 | *) echo "Unknown iPAQ model: $ipaq" ;; | 23 | *) echo "Unknown iPAQ model: $ipaq" ;; |
23 | esac | 24 | esac |
24 | else | 25 | else |
25 | export QWS_DISPLAY=Transformed:Rot270:0 | 26 | export QWS_DISPLAY=Transformed:Rot270:0 |
26 | fi | 27 | fi |
27 | 28 | ||
28 | if [ -e /proc/cpuinfo ] ; then | 29 | if [ -e /proc/cpuinfo ] ; then |
29 | if (grep -qi "Simpad" /proc/cpuinfo) ; then | 30 | if (grep -qi "Simpad" /proc/cpuinfo) ; then |
30 | export QWS_KEYBOARD='SIMpad' | 31 | export QWS_KEYBOARD='SIMpad' |
31 | export QWS_DISPLAY=Transformed:Rot0:0 | 32 | export QWS_DISPLAY=Transformed:Rot0:0 |
32 | fi | 33 | fi |
33 | fi | 34 | fi |
34 | 35 | ||
35 | 36 | ||
36 | if [ ! -x $OPIEDIR/bin/qpe ] ; then | 37 | if [ ! -x $OPIEDIR/bin/qpe ] ; then |
37 | echo Opie not installed | 38 | echo Opie not installed |
38 | exit 0 | 39 | exit 0 |
39 | fi | 40 | fi |
40 | 41 | ||
41 | . /etc/profile | 42 | . /etc/profile |
42 | 43 | ||
43 | case $1 in | 44 | case $1 in |
44 | 'start') | 45 | 'start') |
45 | cd $HOME | 46 | cd $HOME |