1# Copyright (c) 2018 Intel Corporation. 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig PTP_CLOCK 5 bool "Precision Time Protocol (PTP) Clock drivers" 6 help 7 Enable options for Precision Time Protocol Clock drivers. 8 9if PTP_CLOCK 10 11# zephyr-keep-sorted-start 12source "drivers/ptp_clock/Kconfig.nxp_enet" 13source "drivers/ptp_clock/Kconfig.nxp_netc" 14# zephyr-keep-sorted-stop 15 16config PTP_CLOCK_INIT_PRIORITY 17 int "Init priority" 18 default 75 19 help 20 PTP Clock device driver initialization priority 21 22config PTP_CLOCK_SHELL 23 bool "PTP Clock Shell" 24 depends on SHELL 25 help 26 Enable PTP Clock Shell. 27 28 The PTP clock shell currently supports clock operations. 29 30endif # PTP_CLOCK 31