-rw-r--r-- | share/opie-login/pre-session | 14 |
1 files changed, 6 insertions, 8 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 | |||
@@ -26,16 +26,14 @@ permin () | |||
26 | fi | 26 | fi |
27 | } | 27 | } |
28 | 28 | ||
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 | permin $i |
38 | done | ||
37 | fi | 39 | fi |
38 | |||
39 | for i in $devs; do | ||
40 | permin $i | ||
41 | done | ||