-rw-r--r-- | share/opie-login/post-session | 2 | ||||
-rw-r--r-- | share/opie-login/pre-session | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/share/opie-login/post-session b/share/opie-login/post-session index 5275513..680701f 100644 --- a/share/opie-login/post-session +++ b/share/opie-login/post-session | |||
@@ -1,24 +1,24 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | permout () | 3 | permout () |
4 | { | 4 | { |
5 | if [ -e $1 ] | 5 | if [ -e $1 ] |
6 | then | 6 | then |
7 | chown root $1 | 7 | chown root $1 |
8 | else | 8 | else |
9 | echo Warning: $1 does not exist. | 9 | echo Warning: $1 does not exist. |
10 | return 1 | 10 | return 1 |
11 | fi | 11 | fi |
12 | } | 12 | } |
13 | 13 | ||
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/* \ |
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* |
20 | fi | 20 | fi |
21 | 21 | ||
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 1c2b630..28d4a1f 100644 --- a/share/opie-login/pre-session +++ b/share/opie-login/pre-session | |||
@@ -8,34 +8,34 @@ USER=$1 | |||
8 | #question. We wish to ensure that, as a policy | 8 | #question. We wish to ensure that, as a policy |
9 | #choice, a login to opie makes access to these | 9 | #choice, a login to opie makes access to these |
10 | #devices exclusive by 1) changing device ownership | 10 | #devices exclusive by 1) changing device ownership |
11 | #to the user, and 2) removing group access. | 11 | #to the user, and 2) removing group access. |
12 | # | 12 | # |
13 | #A better implementation would probably be to store | 13 | #A better implementation would probably be to store |
14 | #existing device permissions at load time, and restore | 14 | #existing device permissions at load time, and restore |
15 | #them at exit, rather than making assumptions about | 15 | #them at exit, rather than making assumptions about |
16 | #user/group ownership, or permissions. | 16 | #user/group ownership, or permissions. |
17 | 17 | ||
18 | permin () | 18 | permin () |
19 | { | 19 | { |
20 | if [ -e $1 ] | 20 | if [ -e $1 ] |
21 | then | 21 | then |
22 | chown $USER $1 | 22 | chown $USER $1 |
23 | else | 23 | else |
24 | echo Warning: $1 does not exist. | 24 | echo Warning: $1 does not exist. |
25 | return 1 | 25 | return 1 |
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/0 \ | 32 | devs=/dev/sound/dsp /dev/sound/mixer /dev/touchscreen/* \ |
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* |
37 | fi | 37 | fi |
38 | 38 | ||
39 | for i in $devs; do | 39 | for i in $devs; do |
40 | permin $i | 40 | permin $i |
41 | done | 41 | done |