diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-07-15 14:59:22 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-07-15 14:59:22 +0000 |
commit | 4a86d77349a4aa1e1ada6d019d7e2207e9c8ef55 (patch) | |
tree | 8d9ae6da78a1d3f113f5a92ff37fee946b0dcc91 /etc/etc.pmax | |
parent | 86808c1792db3660ec637ca3878dbf939075b0a7 (diff) |
ad rnd devices.
Diffstat (limited to 'etc/etc.pmax')
-rw-r--r-- | etc/etc.pmax/MAKEDEV | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/etc/etc.pmax/MAKEDEV b/etc/etc.pmax/MAKEDEV index bba9cf3c3dc..0c78d27edb1 100644 --- a/etc/etc.pmax/MAKEDEV +++ b/etc/etc.pmax/MAKEDEV @@ -29,6 +29,7 @@ # cfb* raw interface to turbochannel PMAG-BA color frame buffer # xcfb* raw interface to maxine graphics devices # mfb* raw interface to mono graphics devices +# *rnd random data source PATH=/sbin:/bin/:/usr/bin:/usr/sbin umask 77 @@ -247,6 +248,16 @@ pty*) esac ;; +rnd|srnd|urnd|prnd) + rm -f rnd urnd srnd prnd + mknod rnd c 89 0 + mknod srnd c 89 1 + mknod urnd c 89 2 + mknod prnd c 89 3 + chown root.wheel rnd srnd urnd prnd + chmod 644 rnd srnd urnd prnd + ;; + local) umask 0 sh MAKEDEV.local |