-rw-r--r-- | share/opie-login/pre-session | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/share/opie-login/pre-session b/share/opie-login/pre-session index 28d4a1f..2fdf7e9 100644 --- a/share/opie-login/pre-session +++ b/share/opie-login/pre-session | |||
@@ -29,13 +29,11 @@ permin () | |||
29 | if [ -e /proc/hal/model ]; then | 29 | if [ -e /proc/hal/model ]; then |
30 | # fix for misconfigured devfsd | 30 | # fix for misconfigured devfsd |
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/* \ | 32 | for i in /dev/sound/dsp /dev/sound/mixer /dev/touchscreen/* /dev/fb/0 /dev/vc/0; do |
33 | /dev/fb/0 /dev/vc/0 | 33 | permin $i |
34 | done | ||
34 | else | 35 | else |
35 | devs=/dev/dsp/* /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \ | 36 | for i in /dev/dsp/* /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 /dev/sharp* /dev/collie*; do |
36 | /dev/sharp* /dev/collie* | ||
37 | fi | ||
38 | |||
39 | for i in $devs; do | ||
40 | permin $i | 37 | permin $i |
41 | done | 38 | done |
39 | fi | ||