summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/scripts/filesystem_mounter.sh
authorzecke <zecke>2004-08-14 12:05:39 (UTC)
committer zecke <zecke>2004-08-14 12:05:39 (UTC)
commit3df06db9e6fd268c7d234be05b01a2303dc0f7ba (patch) (unidiff)
tree6a642674a0a69729c207337e63e20b8e02f40ec4 /noncore/tools/opie-sh/scripts/filesystem_mounter.sh
parent7cee03c63afadac76e87e276a5ef7b1bba27847b (diff)
downloadopie-3df06db9e6fd268c7d234be05b01a2303dc0f7ba.zip
opie-3df06db9e6fd268c7d234be05b01a2303dc0f7ba.tar.gz
opie-3df06db9e6fd268c7d234be05b01a2303dc0f7ba.tar.bz2
Do not hardcode /opt/QtPalmtop but use $OPIEDIR
Diffstat (limited to 'noncore/tools/opie-sh/scripts/filesystem_mounter.sh') (more/less context) (show whitespace changes)
-rwxr-xr-xnoncore/tools/opie-sh/scripts/filesystem_mounter.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/tools/opie-sh/scripts/filesystem_mounter.sh b/noncore/tools/opie-sh/scripts/filesystem_mounter.sh
index faaf37c..ba461a1 100755
--- a/noncore/tools/opie-sh/scripts/filesystem_mounter.sh
+++ b/noncore/tools/opie-sh/scripts/filesystem_mounter.sh
@@ -22,13 +22,13 @@
22# 20020517-1 - nicer fullscreen, added about, tried icon 22# 20020517-1 - nicer fullscreen, added about, tried icon
23# 23#
24 24
25OPIE_SH=/opt/QtPalmtop/bin/opie-sh 25OPIE_SH=$OPIEDIR/bin/opie-sh
26 26
27###################################################################### 27######################################################################
28# subroutines 28# subroutines
29 29
30about() { 30about() {
31 ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/fsmounter.png>" 31 ( echo "<img src=$OPIEDIR/pics/opie-sh-scripts/fsmounter.png>"
32 echo "<h3>About</h3>" 32 echo "<h3>About</h3>"
33 echo "This little App should make it possible for you to " 33 echo "This little App should make it possible for you to "
34 echo "easily mount and unmount filesystems from /etc/fstab" 34 echo "easily mount and unmount filesystems from /etc/fstab"
@@ -39,7 +39,7 @@ about() {
39} 39}
40 40
41beforemount() { 41beforemount() {
42 ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/fsmounter.png>" 42 ( echo "<img src=$OPIEDIR/pics/opie-sh-scripts/fsmounter.png>"
43 echo "<h3>mount or unmount $MOUNTPOINT ?</h3>" 43 echo "<h3>mount or unmount $MOUNTPOINT ?</h3>"
44 echo "<b>excerpt from MOUNT(8) manpage:</b><p>" 44 echo "<b>excerpt from MOUNT(8) manpage:</b><p>"
45 echo "All files accessible in a Unix system are arranged in one 45 echo "All files accessible in a Unix system are arranged in one
@@ -100,7 +100,7 @@ if [ "$MOUNTPOINT" = "" ]
100then echo "ugly error...." | $OPIE_SH -f ; cleanup 100then echo "ugly error...." | $OPIE_SH -f ; cleanup
101fi 101fi
102 102
103( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/fsmounter.png>" 103( echo "<img src=$OPIEDIR/pics/opie-sh-scripts/fsmounter.png>"
104 echo "<h3>Output of $ACTION $MOUNTPOINT :</h3>" 104 echo "<h3>Output of $ACTION $MOUNTPOINT :</h3>"
105 echo "<pre>" 105 echo "<pre>"
106 $ACTION $MOUNTPOINT 2>&1 106 $ACTION $MOUNTPOINT 2>&1