diff options
author | bde <bde@FreeBSD.org> | 1999-12-26 15:24:58 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-12-26 15:24:58 +0000 |
commit | ca9961972f56cb4711e36f590e44faf51ed530aa (patch) | |
tree | c33403ad0a569afde3a081c8690616ce0cf85162 /etc | |
parent | 3e1f24eccee316becf0b1a00be372755ae804466 (diff) | |
download | FreeBSD-src-ca9961972f56cb4711e36f590e44faf51ed530aa.zip FreeBSD-src-ca9961972f56cb4711e36f590e44faf51ed530aa.tar.gz |
Moved $FreeBSD$ to its usual place after the CSRG id.
Fixed some style bugs for cam (superflous umask and missing newline).
Fixed bogons for apm. The pattern "apm*" matched too many things; apm
and apmctl were both made twice by `MAKEDEV all'. Hopefully no one
depends on `MAKEDEV apm0' making apm or on `MAKEDEV apm' making apmctl.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/MAKEDEV | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index a4734a4..381dafb 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -20,6 +20,7 @@ # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. # # @(#)MAKEDEV 5.2 (Berkeley) 6/22/90 +# $FreeBSD$ # # Device "make" file. Valid arguments: # all makes all known devices, standard number of units (or close) @@ -131,8 +132,6 @@ # pci PCI configuration-space access from user mode # kbd keyboard devices # -# $FreeBSD$ -# if [ -n "$MAKEDEVPATH" ]; then PATH="$MAKEDEVPATH" @@ -606,7 +605,6 @@ targ[0-9]*) # CAM transport layer device xpt*) - umask 077 # This major number is temporary chr=104 name=xpt @@ -623,9 +621,9 @@ xpt*) i=$(($i + 1)) done ;; + # CAM passthrough device pass*|uk*) - umask 077 # This major number is temporary chr=31 name=pass @@ -1293,13 +1291,15 @@ gsc*) chmod 666 gsc${unit}* ;; -apm*) - chr=39 - mknod apm c $chr 0 - mknod apmctl c $chr 8 +apm) + mknod apm c 39 0 chgrp operator apm - chgrp operator apmctl chmod 660 apm + ;; + +apmctl) + mknod apmctl c 39 8 + chgrp operator apmctl chmod 660 apmctl ;; |