mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 06:42:51 +01:00
Add 'rc' devices.
This commit is contained in:
parent
38994061cf
commit
29ea28d79e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8018
20
etc/MAKEDEV
20
etc/MAKEDEV
@ -77,7 +77,7 @@
|
||||
# spigot Video Spigot video aquisition card
|
||||
# isdn* ISDN devices
|
||||
#
|
||||
# $Id: MAKEDEV,v 1.81 1995/03/21 06:31:00 jkh Exp $
|
||||
# $Id: MAKEDEV,v 1.82 1995/04/13 00:51:55 jkh Exp $
|
||||
#
|
||||
|
||||
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:
|
||||
@ -619,6 +619,24 @@ tty0?|ttyd?|tty?)
|
||||
chown root.wheel tty*d$unit
|
||||
;;
|
||||
|
||||
cuar?)
|
||||
umask 7
|
||||
unit=`expr $i : 'cua.*\(.\)$'`
|
||||
rm -f cuar$unit
|
||||
m=`ttyminor $unit`
|
||||
mknod cuar$unit c 63 `expr $m + 128`
|
||||
chown uucp.dialer cuar$unit
|
||||
umask 77
|
||||
;;
|
||||
|
||||
ttyr?)
|
||||
unit=`expr $i : 'tty.*\(.\)$'`
|
||||
rm -f ttyr$unit
|
||||
m=`ttyminor $unit`
|
||||
mknod ttyr$unit c 63 $m
|
||||
chown root.wheel ttyr$unit
|
||||
;;
|
||||
|
||||
mse*)
|
||||
unit=`expr $i : 'mse\(.*\)'`
|
||||
chr=27
|
||||
|
@ -77,7 +77,7 @@
|
||||
# spigot Video Spigot video aquisition card
|
||||
# isdn* ISDN devices
|
||||
#
|
||||
# $Id: MAKEDEV,v 1.81 1995/03/21 06:31:00 jkh Exp $
|
||||
# $Id: MAKEDEV,v 1.82 1995/04/13 00:51:55 jkh Exp $
|
||||
#
|
||||
|
||||
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:
|
||||
@ -619,6 +619,24 @@ tty0?|ttyd?|tty?)
|
||||
chown root.wheel tty*d$unit
|
||||
;;
|
||||
|
||||
cuar?)
|
||||
umask 7
|
||||
unit=`expr $i : 'cua.*\(.\)$'`
|
||||
rm -f cuar$unit
|
||||
m=`ttyminor $unit`
|
||||
mknod cuar$unit c 63 `expr $m + 128`
|
||||
chown uucp.dialer cuar$unit
|
||||
umask 77
|
||||
;;
|
||||
|
||||
ttyr?)
|
||||
unit=`expr $i : 'tty.*\(.\)$'`
|
||||
rm -f ttyr$unit
|
||||
m=`ttyminor $unit`
|
||||
mknod ttyr$unit c 63 $m
|
||||
chown root.wheel ttyr$unit
|
||||
;;
|
||||
|
||||
mse*)
|
||||
unit=`expr $i : 'mse\(.*\)'`
|
||||
chr=27
|
||||
|
Loading…
Reference in New Issue
Block a user