diff options
author | joe <joe@FreeBSD.org> | 2002-07-10 16:07:33 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2002-07-10 16:07:33 +0000 |
commit | ddb988fd9f507be42ef56c1b97430520a65026a7 (patch) | |
tree | 5f5e026dc14c70169ba4d08a76c991be378234e0 /etc/MAKEDEV | |
parent | 7ffb7525e5710cf2804f31d4518d56efca313935 (diff) | |
download | FreeBSD-src-ddb988fd9f507be42ef56c1b97430520a65026a7.zip FreeBSD-src-ddb988fd9f507be42ef56c1b97430520a65026a7.tar.gz |
Rename 'usio' to 'ucom'.
Spotted by: akiyama
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r-- | etc/MAKEDEV | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index 9d22032..d8d2274 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -103,7 +103,7 @@ # ums* mouse # urio* Diamond Rio 500 # uscanner* USB scanners -# usio* USB serial devices +# ucom* USB serial devices # # SCSI devices (other than CD-ROM, tape and disk): # ch* SCSI Media-Changer (juke box) driver @@ -1001,11 +1001,11 @@ urio*) umask 77 ;; -usio*) +ucom*) umask 7 - unit=`expr $i : 'usio\(.*\)'` + unit=`expr $i : 'ucom\(.*\)'` minor=`unit2minor $(($unit + 128))` - mknod usio$unit c 138 $minor uucp:dialer + mknod ucom$unit c 138 $minor uucp:dialer umask 77 ;; |