mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
Add PPS signal generator which utilizes STROBE pin of a parallel port to send PPS signals. It uses parport abstraction layer and hrtimers to precisely control the signal. [[email protected]: fix build] Signed-off-by: Alexander Gordeev <[email protected]> Acked-by: Rodolfo Giometti <[email protected]> Cc: john stultz <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
11 lines
212 B
Makefile
11 lines
212 B
Makefile
#
|
|
# 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/ generators/
|
|
|
|
ccflags-$(CONFIG_PPS_DEBUG) := -DDEBUG
|