author | kergoth <kergoth> | 2003-02-03 21:29:18 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-02-03 21:29:18 (UTC) |
commit | ddbafc58961158490c1a68d5102a2a8662a58fa5 (patch) (unidiff) | |
tree | d12957d972c4637e2086c77bf6a9095901858740 /share | |
parent | 0b51d46117f7b6f7fd8e4ee614cbf6265b4e7bf6 (diff) | |
download | opie-ddbafc58961158490c1a68d5102a2a8662a58fa5.zip opie-ddbafc58961158490c1a68d5102a2a8662a58fa5.tar.gz opie-ddbafc58961158490c1a68d5102a2a8662a58fa5.tar.bz2 |
Fixed a couple bugs in the scripts..
-rw-r--r-- | share/opie-login/post-session | 6 | ||||
-rw-r--r-- | share/opie-login/pre-session | 6 |
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 | |||
@@ -14,6 +14,6 @@ permout () | |||
14 | if [ -e /proc/hal/model ]; then | 14 | if [ -e /proc/hal/model ]; then |
15 | devs = /dev/sound/dsp /dev/sound/mixer /dev/touchscreen/0 \ | 15 | devs=/dev/sound/dsp /dev/sound/mixer /dev/touchscreen/0 \ |
16 | /dev/fb/0 /dev/vc/0 | 16 | /dev/fb/0 /dev/vc/0 |
17 | else | 17 | else |
18 | devs = /dev/dsp /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \ | 18 | devs=/dev/dsp /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \ |
19 | /dev/sharp* /dev/collie* | 19 | /dev/sharp* /dev/collie* |
@@ -22,3 +22,3 @@ fi | |||
22 | for i in $devs; do | 22 | for i in $devs; do |
23 | permout( $i ) | 23 | permout $i |
24 | done | 24 | 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 | |||
@@ -31,6 +31,6 @@ if [ -e /proc/hal/model ]; then | |||
31 | chmod +x /dev/sound /dev/touchscreen /dev/fb /dev/vc | 31 | chmod +x /dev/sound /dev/touchscreen /dev/fb /dev/vc |
32 | devs = /dev/sound/dsp /dev/sound/mixer /dev/touchscreen/0 \ | 32 | devs=/dev/sound/dsp /dev/sound/mixer /dev/touchscreen/0 \ |
33 | /dev/fb/0 /dev/vc/0 | 33 | /dev/fb/0 /dev/vc/0 |
34 | else | 34 | else |
35 | devs = /dev/dsp /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \ | 35 | devs=/dev/dsp /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \ |
36 | /dev/sharp* /dev/collie* | 36 | /dev/sharp* /dev/collie* |
@@ -39,3 +39,3 @@ fi | |||
39 | for i in $devs; do | 39 | for i in $devs; do |
40 | permin( $i ) | 40 | permin $i |
41 | done | 41 | done |