author | sandman <sandman> | 2002-12-10 22:52:16 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-12-10 22:52:16 (UTC) |
commit | fb6080662ab5f63616665b5e57c6a2c567165751 (patch) (unidiff) | |
tree | 769bb6254c1716f3acc247c5053303df9aad3c41 /etc | |
parent | 8fda4228dc83e4db97aebcffda0e0b79b89ed68e (diff) | |
download | opie-fb6080662ab5f63616665b5e57c6a2c567165751.zip opie-fb6080662ab5f63616665b5e57c6a2c567165751.tar.gz opie-fb6080662ab5f63616665b5e57c6a2c567165751.tar.bz2 |
not needed anymore (and in the wrong location too)
-rwxr-xr-x | etc/init.d/qpe | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/etc/init.d/qpe b/etc/init.d/qpe deleted file mode 100755 index 8019265..0000000 --- a/etc/init.d/qpe +++ b/dev/null | |||
@@ -1,58 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | |||
4 | module_id() { | ||
5 | cat /proc/hal/model | ||
6 | } | ||
7 | |||
8 | export LOGNAME=root | ||
9 | export HOME=/$LOGNAME | ||
10 | #export QWS_DISPLAY=Transformed:Rot270:0 | ||
11 | export QTDIR=/opt/QtPalmtop | ||
12 | export OPIEDIR=/opt/QtPalmtop | ||
13 | export QPEDIR=/opt/QtPalmtop | ||
14 | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OPIEDIR/lib | ||
15 | export PATH=$PATH:$OPIEDIR/bin | ||
16 | |||
17 | #this sets the iPaqs powerbutton to mapable | ||
18 | echo 1 > /proc/sys/ts/suspend_button_mode | ||
19 | |||
20 | if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi | ||
21 | |||
22 | $OPIEDIR/bin/qpe-reorgfiles | ||
23 | |||
24 | . /etc/profile | ||
25 | |||
26 | killproc() { | ||
27 | pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` | ||
28 | [ "$pid" != "" ] && kill $pid | ||
29 | } | ||
30 | |||
31 | case $1 in | ||
32 | 'start') | ||
33 | echo "Starting QPE..." | ||
34 | |||
35 | cd $HOME | ||
36 | |||
37 | rm -f /etc/rc2.d/S99x # Can't have both running! | ||
38 | |||
39 | case `module_id` in | ||
40 | "3100" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; | ||
41 | "3600" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; | ||
42 | "3700" ) export QWS_DISPLAY=Transformed:Rot270:0 ;; | ||
43 | "3800" ) export QWS_DISPLAY=Transformed:Rot90:0 ;; | ||
44 | *) echo "Unknown processor type -`module_id`-!" ;; | ||
45 | esac | ||
46 | |||
47 | $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & | ||
48 | |||
49 | ;; | ||
50 | 'stop') | ||
51 | echo "Killing QPE..." | ||
52 | killproc qpe | ||
53 | ;; | ||
54 | *) | ||
55 | echo "usage: $0 { start | stop }" | ||
56 | ;; | ||
57 | esac | ||
58 | |||