summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/scripts/logviewer.sh
Side-by-side diff
Diffstat (limited to 'noncore/tools/opie-sh/scripts/logviewer.sh') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/tools/opie-sh/scripts/logviewer.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/tools/opie-sh/scripts/logviewer.sh b/noncore/tools/opie-sh/scripts/logviewer.sh
index e9657b4..9b5dc25 100755
--- a/noncore/tools/opie-sh/scripts/logviewer.sh
+++ b/noncore/tools/opie-sh/scripts/logviewer.sh
@@ -8,32 +8,32 @@
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# 20020526-1a - initial release...
#
-OPIE_SH=/opt/QtPalmtop/bin/opie-sh
+OPIE_SH=$OPIEDIR/bin/opie-sh
INITPATH=/etc/init.d
######################################################################
# subroutines
about() {
- ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/logviewer.png>"
+ ( echo "<img src=$OPIEDIR/pics/opie-sh-scripts/logviewer.png>"
echo "<h3>About</h3>"
echo "This little App should make it possible for you to "
echo "easily have a look at some of the syslogs. "
echo "<p>"
) | $OPIE_SH -t logviewer -f &
SCREENCLEAN=$!
sleep 1
}
cleanup() {
kill $SCREENCLEAN 2>/dev/null
rm -f /tmp/qcop-msg-logviewer.sh
@@ -65,38 +65,38 @@ case $LOGMETHOD in
proc) $OPIE_SH -m -t "Select Log" \
-M "which procfile ?<br>" \
-g -0 kmsg -1 "ksyms"
RETURNCODE=$?
case $RETURNCODE in
-1) cleanup ;;
0)
cat /proc/kmsg >/tmp/log.$$ &
PID=$!
sleep 2
kill $PID
-( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/logviewer.png>"
+( echo "<img src=$OPIEDIR/pics/opie-sh-scripts/logviewer.png>"
echo "<h3>/proc/kmsg</h3>"
cat /tmp/log.$$
) | $OPIE_SH -t kmsg -f
rm -f /tmp/$$
cleanup ;;
1)
cat /proc/ksyms >/tmp/log.$$ &
PID=$!
sleep 2
kill $PID
-( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/logviewer.png>"
+( echo "<img src=$OPIEDIR/pics/opie-sh-scripts/logviewer.png>"
echo "<h3>/proc/ksyms</h3>"
cat /tmp/log.$$
) | $OPIE_SH -t ksyms -f
rm -f /tmp/$$
cleanup ;;
*) cleanup ;;
esac
cleanup ;;
syslog)