diff options
author | sheldonh <sheldonh@FreeBSD.org> | 1999-07-09 12:52:04 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 1999-07-09 12:52:04 +0000 |
commit | 34127dc30766b8dde4cff62174899daebb45491d (patch) | |
tree | e7560beb5a22a82aa983147648d7f93ec3a3c686 /etc/MAKEDEV | |
parent | 48c84d50f9b13bd6c27273d627062f24537bfa94 (diff) | |
download | FreeBSD-src-34127dc30766b8dde4cff62174899daebb45491d.zip FreeBSD-src-34127dc30766b8dde4cff62174899daebb45491d.tar.gz |
Add the pps (Pulse per second timing interface) device.
PR: 12568
Submitted by: Craig Leres <leres@ee.lbl.gov>
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 19dbc70..c7cb572 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -78,6 +78,7 @@ # Parallel port: # lpt* Printer # ppi* Parallel port i/o +# pps* Pulse per second timing interface # # I2C and SMBus: # iic* I2C devices @@ -128,7 +129,7 @@ # ipl ipfilter control devices (ipl, ipnat, ipstate, ipauth) # kbd keyboard devices # -# $Id: MAKEDEV,v 1.201 1999/07/05 09:18:57 msmith Exp $ +# $Id: MAKEDEV,v 1.202 1999/07/07 12:00:42 bde Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH @@ -802,6 +803,11 @@ ppi*) mknod ppi$unit c 82 $unit ;; +pps*) + unit=`expr $i : 'pps\(.*\)'` + mknod ppi$unit c 89 $unit + ;; + usb*) unit=`expr $i : 'usb\(.*\)'` mknod usb$unit c 108 $unit |