#!/bin/bash
# console-config/src/lib-scripts/timing-ptp.sh
#
#  Copyright: ©2013, Güralp Systems Ltd.
#  Author: Laurence Withers <lwithers@guralp.com>
#  License: GPLv3
#
# IEEE1588 (precision timing protocol) setup
#



# ptp_setup()
ptp_setup() {
    dialog --msgbox "IEEE1588 (PTP) is not yet implemented." \
        0 "${DIALOG_DEFAULT_W}"
    return 1
}



# vim: ts=4:sw=4:expandtab:syntax=sh
