diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-01-03 16:48:03 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-01-03 16:48:03 +0000 |
commit | ea1bd971b492ea9b48b61920cb30a83763fd546d (patch) | |
tree | 5014506eaa2981651c8c8666bb9a0c61996c31e4 /etc/MAKEDEV | |
parent | 9ace34cb3e39645052a5a1906c73be0736836c52 (diff) | |
download | FreeBSD-src-ea1bd971b492ea9b48b61920cb30a83763fd546d.zip FreeBSD-src-ea1bd971b492ea9b48b61920cb30a83763fd546d.tar.gz |
Corrected the major number for usb and added ums as major 111
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r-- | etc/MAKEDEV | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index 1585b67..4f445d1 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -113,7 +113,7 @@ # pci PCI configuration-space access from user mode # ipl ipfilter control devices (ipl, ipnat, ipstate, ipauth) # -# $Id: MAKEDEV,v 1.177 1998/11/12 22:45:24 nsouch Exp $ +# $Id: MAKEDEV,v 1.178 1998/11/12 22:48:16 nsouch Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH @@ -753,6 +753,16 @@ ppi*) mknod ppi$unit c 82 $unit ;; +usb*) + unit=`expr $i : 'usb\(.*\)'` + mknod usb$unit c 108 $unit + ;; + +ums*) + unit=`expr $i : 'ums\(.*\)'` + mknod ums$unit c 111 $unit + ;; + lpt*) unit=`expr $i : 'lpt\(.*\)'` mknod lpt$unit c 16 $unit |