diff options
| author | Nick Hibma <n_hibma@FreeBSD.org> | 2000-02-12 21:16:01 +0000 |
|---|---|---|
| committer | Nick Hibma <n_hibma@FreeBSD.org> | 2000-02-12 21:16:01 +0000 |
| commit | 53492ec8717adf8f277d23fd039026a14fbf648a (patch) | |
| tree | e6d92122c998bba207da221fbb181921f695198c /etc/MAKEDEV | |
| parent | ddc73667c89a9238868a1e2cf6f2ee34603ae383 (diff) | |
Notes
Diffstat (limited to 'etc/MAKEDEV')
| -rw-r--r-- | etc/MAKEDEV | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index 5456ed8dc3ae..3cabfd621a0c 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -89,6 +89,7 @@ # # USB devices: # usb* USB bus control device +# uhid* Human Interface Device (HID) # ums* mouse # ulpt* printer # ugen* generic USB device @@ -247,7 +248,7 @@ all) sh MAKEDEV ppi0 ppi1 ppi2 # cdev, parallel port sh MAKEDEV iic0 iic1 # cdev, I2C device sh MAKEDEV smb0 smb1 # cdev, SMBus device - sh MAKEDEV usb usb0 ums0 ulpt0 ugen0 # cdev, USB devices + sh MAKEDEV usb usb0 uhid0 ums0 ulpt0 ugen0 # cdev, USB devices sh MAKEDEV bpf0 ipl tun0 # cdev, network sh MAKEDEV ch0 perfmon tw0 # cdev, miscellaneous sh MAKEDEV apm apmctl card0 card1 card2 card3 # cdev, laptop @@ -907,6 +908,11 @@ usb*) chmod 0660 usb$unit ;; +uhid*) + unit=`expr $i : 'uhid\(.*\)'` + mknod uhid$unit c 122 $unit + ;; + ums*) unit=`expr $i : 'ums\(.*\)'` mknod ums$unit c 111 $unit |
