diff options
author | ache <ache@FreeBSD.org> | 1995-05-07 23:04:03 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-05-07 23:04:03 +0000 |
commit | 0044255e3ce29214247320fa949ece551f695e90 (patch) | |
tree | 51af6f71ab38f4729cd9431cd4f7ce01ddc30ef2 /etc/MAKEDEV | |
parent | 125aa8907e7974cefad633909114ef40fb52284d (diff) | |
download | FreeBSD-src-0044255e3ce29214247320fa949ece551f695e90.zip FreeBSD-src-0044255e3ce29214247320fa949ece551f695e90.tar.gz |
Change 'rc' entries from 'r' to 'm', conflict with ptys
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r-- | etc/MAKEDEV | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index d322c6b..bf6a4ec 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -85,7 +85,7 @@ # isdn* ISDN devices # labpc* National Instrument's Lab-PC and LAB-PC+ # -# $Id: MAKEDEV,v 1.89 1995/05/01 14:34:45 dufault Exp $ +# $Id: MAKEDEV,v 1.90 1995/05/03 18:15:35 dufault Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin: @@ -697,22 +697,24 @@ ttyc?) chown root.wheel tty*c$unit ;; -cuar?) +# RISCom8 'rc' driver entries + +cuam?) umask 7 unit=`expr $i : 'cua.*\(.\)$'` - rm -f cuar$unit + rm -f cuam$unit m=`ttyminor $unit` - mknod cuar$unit c 63 `expr $m + 128` - chown uucp.dialer cuar$unit + mknod cuam$unit c 63 `expr $m + 128` + chown uucp.dialer cuam$unit umask 77 ;; -ttyr?) +ttym?) unit=`expr $i : 'tty.*\(.\)$'` - rm -f ttyr$unit + rm -f ttym$unit m=`ttyminor $unit` - mknod ttyr$unit c 63 $m - chown root.wheel ttyr$unit + mknod ttym$unit c 63 $m + chown root.wheel ttym$unit ;; mse*) |