diff options
author | jkh <jkh@FreeBSD.org> | 2000-01-19 18:16:24 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 2000-01-19 18:16:24 +0000 |
commit | a90388ad5b4ffbcc0ab1f2ced20b18a527432bf7 (patch) | |
tree | be5490a9bc0a6896f3c540dceccc7a19f0febda5 | |
parent | f7f2d53f1e71f96d14f62d57eed71617a59695f6 (diff) | |
download | FreeBSD-src-a90388ad5b4ffbcc0ab1f2ced20b18a527432bf7.zip FreeBSD-src-a90388ad5b4ffbcc0ab1f2ced20b18a527432bf7.tar.gz |
Add device entries for new parallel port radio clock driver.
We were supposed to get these in far earlier and didn't, hence
the commit after feature freeze. A promise is a promise. :)
Submitted by: Sascha Schumann <sascha@schumann.cx>
-rw-r--r-- | etc/MAKEDEV | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV index 397de86..2fc9808 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -81,6 +81,7 @@ # lpt* Printer # ppi* Parallel port i/o # pps* Pulse per second timing interface +# pcfclock* Parallel time sync interface # # I2C and SMBus: # iic* I2C devices @@ -866,6 +867,11 @@ smb*) mknod smb$unit c 106 $unit ;; +pcfclock*) + unit=`expr $i : 'pcfclock\(.*\)'` + mknod pcfclock$unit c 140 $unit + ;; + ppi*) unit=`expr $i : 'ppi\(.*\)'` mknod ppi$unit c 82 $unit |