blob: 09aebe092506b05290004d8dafcac4e7494acf97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#!/bin/sh
#
module_id() {
cat /proc/hal/model
}
export LOGNAME=root
export HOME=/$LOGNAME
#export QWS_DISPLAY=Transformed:Rot270:0
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
#this sets the iPaqs powerbutton to mapable
echo 1 > /proc/sys/ts/suspend_button_mode
if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi
$OPIEDIR/bin/opie-reorgfiles
. /etc/profile
killproc() {
pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'`
[ "$pid" != "" ] && kill $pid
}
case $1 in
'start')
echo "Starting Opie..."
cd $HOME
rm -f /etc/rc2.d/S99x # Can't have both running!
case `module_id` 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 ;;
*) echo "Unknown processor type -`module_id`-!" ;;
esac
if [ -x $OPIEDIR/bin/opie-login ]; then
$OPIEDIR/bin/opie-login 2>/dev/null >/dev/null &
else
$OPIEDIR/bin/qpe 2>/dev/null >/dev/null &
fi
;;
'stop')
echo "Killing Opie..."
if [ -f /var/run/opie.pid ]; then
kill -TERM `cat /var/run/opie.pid`
else
killproc qpe
fi
killproc opie-login
;;
*)
echo "usage: $0 { start | stop }"
;;
esac
|