author | kergoth <kergoth> | 2003-03-28 07:55:46 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-03-28 07:55:46 (UTC) |
commit | 362c15fa86471c032b2aed5ba3be8c513afe6417 (patch) (side-by-side diff) | |
tree | c67e5a2280d7b9e83e79ea5b16aeaa25e28876d6 | |
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 @@ -26,16 +26,14 @@ permin () fi } 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/* \ - /dev/fb/0 /dev/vc/0 + for i in /dev/sound/dsp /dev/sound/mixer /dev/touchscreen/* /dev/fb/0 /dev/vc/0; do + permin $i + done else - devs=/dev/dsp/* /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \ - /dev/sharp* /dev/collie* + for i in /dev/dsp/* /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 /dev/sharp* /dev/collie*; do + permin $i + done fi - -for i in $devs; do - permin $i -done |