diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2008-01-05 17:33:29 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2008-01-05 17:33:29 +0000 |
commit | 2a0eec3d922ea9fda272a0a239ac6eb30cadc40b (patch) | |
tree | d48c394d5a9db8c4f953389e4ff44df8005b4fbb /sys/conf/GENERIC | |
parent | f1d430b3cf60f8e6d4f5810bcde9bc17bd36ac8c (diff) |
Add support for the Meinberg Standard Time String format that all Meinberg
radio clocks can transmit over serial ports. This is implemented as a
line discipline similar to nmea(4) and provides a timedelta sensor.
See http://www.meinberg.de/english/specs/timestr.htm for details on the
MSTS format.
ldattach(8) is extended to support the "msts" line discipline and two stopbits
(which some radio clocks, e.g. the C51 use). Do a "make includes" before your
next system build.
Initially from Maurice Janssen based on nmea(4). "go for it" deraadt
Diffstat (limited to 'sys/conf/GENERIC')
-rw-r--r-- | sys/conf/GENERIC | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/conf/GENERIC b/sys/conf/GENERIC index e2adc760388..ba185874a69 100644 --- a/sys/conf/GENERIC +++ b/sys/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.138 2007/11/28 12:25:39 deraadt Exp $ +# $OpenBSD: GENERIC,v 1.139 2008/01/05 17:33:28 mbalmer Exp $ # # Machine-independent option; used by all architectures for their # GENERIC kernel @@ -75,6 +75,7 @@ pseudo-device enc 1 # option IPSEC needs the encapsulation interface pseudo-device pty 16 # initial number of pseudo-terminals pseudo-device nmea 1 # NMEA 0183 line discipline +pseudo-device msts 1 # MSTS line discipline pseudo-device vnd 4 # paging to files pseudo-device ccd 4 # concatenated disk devices pseudo-device ksyms 1 # kernel symbols device |