diff options
Diffstat (limited to 'usr.sbin/xntpd/refclocks/rclk.IRIG')
-rw-r--r-- | usr.sbin/xntpd/refclocks/rclk.IRIG | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/usr.sbin/xntpd/refclocks/rclk.IRIG b/usr.sbin/xntpd/refclocks/rclk.IRIG new file mode 100644 index 0000000..b480e90 --- /dev/null +++ b/usr.sbin/xntpd/refclocks/rclk.IRIG @@ -0,0 +1,24 @@ +#!/bin/sh - +CMD="$1" +shift; + +. refclocks/setup + +if check "$DEFS" '$0 ~ /SYS_SUNOS4/'; then + case "$CMD" in + info) + echo " IRIG - IRIG-B timecode timecode using the audio codec" + ;; + check) + if check "$RCONFIG" '$0 ~ /IRIG/'; then + echo "IRIG - IRIG-B timecode timecode using the audio codec" + fi + ;; + config) + if check "$REFCONF" '$0 ~ /IRIG/' || + ( [ ! "$REFCONF" ] && query "Include IRIG-B timecode timecode using the audio codec (IRIG)" n); then + echo "-DIRIG" >> $RCONFIG + fi + ;; + esac +fi |