summaryrefslogtreecommitdiff
path: root/share
authorkergoth <kergoth>2003-02-03 21:29:18 (UTC)
committer kergoth <kergoth>2003-02-03 21:29:18 (UTC)
commitddbafc58961158490c1a68d5102a2a8662a58fa5 (patch) (side-by-side diff)
treed12957d972c4637e2086c77bf6a9095901858740 /share
parent0b51d46117f7b6f7fd8e4ee614cbf6265b4e7bf6 (diff)
downloadopie-ddbafc58961158490c1a68d5102a2a8662a58fa5.zip
opie-ddbafc58961158490c1a68d5102a2a8662a58fa5.tar.gz
opie-ddbafc58961158490c1a68d5102a2a8662a58fa5.tar.bz2
Fixed a couple bugs in the scripts..
Diffstat (limited to 'share') (more/less context) (ignore whitespace changes)
-rw-r--r--share/opie-login/post-session6
-rw-r--r--share/opie-login/pre-session6
2 files changed, 6 insertions, 6 deletions
diff --git a/share/opie-login/post-session b/share/opie-login/post-session
index bc88902..5275513 100644
--- a/share/opie-login/post-session
+++ b/share/opie-login/post-session
@@ -12,13 +12,13 @@ permout ()
}
if [ -e /proc/hal/model ]; then
- devs = /dev/sound/dsp /dev/sound/mixer /dev/touchscreen/0 \
+ devs=/dev/sound/dsp /dev/sound/mixer /dev/touchscreen/0 \
/dev/fb/0 /dev/vc/0
else
- devs = /dev/dsp /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \
+ devs=/dev/dsp /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \
/dev/sharp* /dev/collie*
fi
for i in $devs; do
- permout( $i )
+ permout $i
done
diff --git a/share/opie-login/pre-session b/share/opie-login/pre-session
index e147afc..1c2b630 100644
--- a/share/opie-login/pre-session
+++ b/share/opie-login/pre-session
@@ -29,13 +29,13 @@ permin ()
if [ -e /proc/hal/model ]; then
# fix for misconfigured devfsd
chmod +x /dev/sound /dev/touchscreen /dev/fb /dev/vc
- devs = /dev/sound/dsp /dev/sound/mixer /dev/touchscreen/0 \
+ devs=/dev/sound/dsp /dev/sound/mixer /dev/touchscreen/0 \
/dev/fb/0 /dev/vc/0
else
- devs = /dev/dsp /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \
+ devs=/dev/dsp /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \
/dev/sharp* /dev/collie*
fi
for i in $devs; do
- permin( $i )
+ permin $i
done