mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 00:16:18 +00:00

Sometimes one needs to be able not only to catch PPS signals but to produce them also. For example, running a distributed simulation, which requires computers' clock to be synchronized very tightly. This patch adds PPS generators class in order to have a well-defined interface for these devices. Signed-off-by: Rodolfo Giometti <giometti@enneenne.com> Link: https://lore.kernel.org/r/20241108073115.759039-2-giometti@enneenne.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13 lines
283 B
Makefile
13 lines
283 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the PPS core.
|
|
#
|
|
|
|
pps_core-y := pps.o kapi.o sysfs.o
|
|
pps_core-$(CONFIG_NTP_PPS) += kc.o
|
|
obj-$(CONFIG_PPS) := pps_core.o
|
|
obj-y += clients/
|
|
obj-$(CONFIG_PPS_GENERATOR) += generators/
|
|
|
|
ccflags-$(CONFIG_PPS_DEBUG) := -DDEBUG
|