diff options
author | hm <hm@FreeBSD.org> | 1999-05-24 18:01:03 +0000 |
---|---|---|
committer | hm <hm@FreeBSD.org> | 1999-05-24 18:01:03 +0000 |
commit | b5519ff1661dc774e43bfe53cfa7b794b2d3440b (patch) | |
tree | c6476ed461860dfab370cafbb19bd2d1b0050f33 /etc/MAKEDEV | |
parent | c32c8650455449ee155601b51819447763a8dce3 (diff) | |
download | FreeBSD-src-b5519ff1661dc774e43bfe53cfa7b794b2d3440b.zip FreeBSD-src-b5519ff1661dc774e43bfe53cfa7b794b2d3440b.tar.gz |
Fix i4bteld entry, the section of the sh case for "i4teld*)" should be
BEFORE the case for "i4tel*)". (match the longest prefix first!)
Recognized by: Harry Starr
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r-- | etc/MAKEDEV | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index f6b8935..772a85b 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -127,7 +127,7 @@ # ipl ipfilter control devices (ipl, ipnat, ipstate, ipauth) # kbd keyboard devices # -# $Id: MAKEDEV,v 1.196 1999/05/04 17:03:58 hosokawa Exp $ +# $Id: MAKEDEV,v 1.197 1999/05/20 10:06:52 hm Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH @@ -1366,13 +1366,6 @@ i4brbch*) chmod 600 i4brbch$unit ;; -i4btel*) - unit=`expr $i : 'i4btel\(.*\)'` - mknod i4btel$unit c 56 $unit - chown root:wheel i4btel$unit - chmod 600 i4btel$unit - ;; - i4bteld*) offset=64 unit=`expr $i : 'i4bteld\(.*\)'` @@ -1381,6 +1374,13 @@ i4bteld*) chmod 600 i4bteld$unit ;; +i4btel*) + unit=`expr $i : 'i4btel\(.*\)'` + mknod i4btel$unit c 56 $unit + chown root:wheel i4btel$unit + chmod 600 i4btel$unit + ;; + i4btrc*) unit=`expr $i : 'i4btrc\(.*\)'` mknod i4btrc$unit c 59 $unit |