diff options
-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 |