mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 22:32:30 +01:00
Add back the Croynx stuff I nuked accidently. I'm not touching this
file anymore after this. My link makes it too painful to make interactive mods, and I don't have the CVS tree here so making changes for "previous history" have to get done on freefall, with the corresponding degree of pain.
This commit is contained in:
parent
91290462f6
commit
e28b57d51b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4932
24
etc/MAKEDEV
24
etc/MAKEDEV
@ -71,7 +71,7 @@
|
||||
# socksys iBCS2 socket system driver
|
||||
# vat VAT compatibility audio driver (requires snd*)
|
||||
#
|
||||
# $Id: MAKEDEV,v 1.50 1994/12/02 16:08:53 jkh Exp $
|
||||
# $Id: MAKEDEV,v 1.51 1994/12/03 00:07:49 wollman Exp $
|
||||
#
|
||||
|
||||
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:
|
||||
@ -601,6 +601,28 @@ apm)
|
||||
chmod 660 apm0
|
||||
;;
|
||||
|
||||
ttyx?|ttyy?|ttyz?)
|
||||
case $i in
|
||||
*0) unit=0;; *1) unit=1;; *2) unit=2;; *3) unit=3;;
|
||||
*4) unit=4;; *5) unit=5;; *6) unit=6;; *7) unit=7;;
|
||||
*8) unit=8;; *9) unit=9;; *a) unit=10;; *b) unit=11;;
|
||||
*c) unit=12;; *d) unit=13;; *e) unit=14;; *f) unit=15;;
|
||||
esac
|
||||
case $i in
|
||||
ttyy?) unit=`expr $unit \+ 16`;;
|
||||
ttyz?) unit=`expr $unit \+ 32`;;
|
||||
esac
|
||||
rm -f $i
|
||||
mknod $i c 42 $unit
|
||||
chown uucp.wheel $i
|
||||
;;
|
||||
|
||||
cronyx)
|
||||
rm -f cronyx
|
||||
mknod cronyx c 42 63
|
||||
chown 444 cronyx
|
||||
;;
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh MAKEDEV.local
|
||||
|
@ -71,7 +71,7 @@
|
||||
# socksys iBCS2 socket system driver
|
||||
# vat VAT compatibility audio driver (requires snd*)
|
||||
#
|
||||
# $Id: MAKEDEV,v 1.50 1994/12/02 16:08:53 jkh Exp $
|
||||
# $Id: MAKEDEV,v 1.51 1994/12/03 00:07:49 wollman Exp $
|
||||
#
|
||||
|
||||
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:
|
||||
@ -601,6 +601,28 @@ apm)
|
||||
chmod 660 apm0
|
||||
;;
|
||||
|
||||
ttyx?|ttyy?|ttyz?)
|
||||
case $i in
|
||||
*0) unit=0;; *1) unit=1;; *2) unit=2;; *3) unit=3;;
|
||||
*4) unit=4;; *5) unit=5;; *6) unit=6;; *7) unit=7;;
|
||||
*8) unit=8;; *9) unit=9;; *a) unit=10;; *b) unit=11;;
|
||||
*c) unit=12;; *d) unit=13;; *e) unit=14;; *f) unit=15;;
|
||||
esac
|
||||
case $i in
|
||||
ttyy?) unit=`expr $unit \+ 16`;;
|
||||
ttyz?) unit=`expr $unit \+ 32`;;
|
||||
esac
|
||||
rm -f $i
|
||||
mknod $i c 42 $unit
|
||||
chown uucp.wheel $i
|
||||
;;
|
||||
|
||||
cronyx)
|
||||
rm -f cronyx
|
||||
mknod cronyx c 42 63
|
||||
chown 444 cronyx
|
||||
;;
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh MAKEDEV.local
|
||||
|
Loading…
Reference in New Issue
Block a user