author | kergoth <kergoth> | 2003-03-28 07:55:46 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-03-28 07:55:46 (UTC) |
commit | 362c15fa86471c032b2aed5ba3be8c513afe6417 (patch) (unidiff) | |
tree | c67e5a2280d7b9e83e79ea5b16aeaa25e28876d6 /share | |
parent | 5088d775fe68ac0dd1b6b9923ab66d30ce1d848a (diff) | |
download | opie-362c15fa86471c032b2aed5ba3be8c513afe6417.zip opie-362c15fa86471c032b2aed5ba3be8c513afe6417.tar.gz opie-362c15fa86471c032b2aed5ba3be8c513afe6417.tar.bz2 |
Apply nonroot login patch from nick duffek.
-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 | |||
@@ -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 | permin $i |
38 | done | ||
37 | fi | 39 | fi |
38 | |||
39 | for i in $devs; do | ||
40 | permin $i | ||
41 | done | ||