summaryrefslogtreecommitdiffstats
path: root/rules/ntp.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2003-12-23 10:57:26 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2003-12-23 10:57:26 +0000
commitad8fb0521afce6d8f1ca4338b7d31d279587c4f5 (patch)
tree601ce12425c036414cc8e283358e7a4470c92c05 /rules/ntp.in
parentb6fe04d1914f199809f70161d50742ec66f49527 (diff)
downloadptxdist-ad8fb0521afce6d8f1ca4338b7d31d279587c4f5.tar.gz
ptxdist-ad8fb0521afce6d8f1ca4338b7d31d279587c4f5.tar.xz
Added NTP support
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunk@948 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/ntp.in')
-rw-r--r--rules/ntp.in151
1 files changed, 151 insertions, 0 deletions
diff --git a/rules/ntp.in b/rules/ntp.in
new file mode 100644
index 000000000..7df35b304
--- /dev/null
+++ b/rules/ntp.in
@@ -0,0 +1,151 @@
+# --- NTP main config ---
+
+menu "NTP "
+
+config NTP
+bool
+prompt "NTP"
+default n
+
+config NTP_CLOCKCTL
+bool
+prompt "Use /dev/clockctl for non-root time control"
+default n
+depends NTP
+
+config NTP_DEBUGGING
+bool
+prompt "include debugging code"
+default n
+depends NTP
+
+config NTP_DST-MINUTES
+int
+prompt "minutes per DST adjustment"
+default 60
+depends NTP
+
+config NTP_BANCOMM
+bool
+prompt "Datum/Bancomm bc635/VME interface"
+default n
+depends NTP
+
+config NTP_GPSVME
+bool
+prompt "TrueTime GPS receiver/VME interface"
+default n
+depends NTP
+
+config NTP_KMEM
+bool
+prompt "read /dev/kmem for tick and/or tickadj"
+default n
+depends NTP
+
+config NTP_ACCURATE_ADJTIME
+bool
+prompt "the adjtime () call is accurate"
+default n
+depends NTP
+
+config NTP_TICK_FORCE
+bool
+prompt "force a value for 'tick'"
+default n
+depends NTP
+
+config NTP_TICK
+int
+prompt "value for 'tick'"
+default 1
+depends NTP && NTP_TICK_FORCE
+
+config NTP_TICKADJ_FORCE
+bool
+prompt "force a value for 'tickadj'"
+default n
+depends NTP
+
+config NTP_TICKADJ
+bool
+prompt "value for 'tickadj'"
+default 1
+depends NTP && NTP_TICKADJ_FORCE
+
+config NTP_SIMULATOR
+bool
+prompt "build/install the NTPD simulator?"
+default n
+depends NTP
+
+config NTP_UDP_WILDCARD
+bool
+prompt "use UDP wildcard delivery"
+default n
+depends NTP
+
+config NTP_SLEW_ALWAYS
+bool
+prompt "always slew the time"
+default n
+depends NTP
+
+config NTP_STEP_SLEW
+bool
+prompt "step and slew the time"
+default n
+depends NTP
+
+config NTP_NTPDATE_STEP
+bool
+prompt "if ntpdate should step the time"
+default n
+depends NTP
+
+config NTP_HOURLY_TODR_SYNC
+bool
+prompt "if we should sync TODR hourly"
+default n
+depends NTP
+
+config NTP_KERNEL_FLL_BUG
+bool
+prompt "if we should avoid a kernel FLL bug"
+default n
+depends NTP
+
+config NTP_IRIG_SAWTOOTH
+bool
+prompt "if we should enable the IRIG sawtooth filter"
+default n
+depends NTP
+
+config NTP_NIST
+bool
+prompt "if we should enable the NIST lockclock scheme"
+default n
+depends NTP
+
+config NTP_CRYPTO
+bool
+prompt "use openssl"
+default n
+depends NTP && OPENSSL
+
+config NTP_SNTP
+bool
+prompt "Build SNTP"
+default n
+depends NTP
+
+config NTP_ARLIB
+bool
+prompt "Compile the async resolver library"
+default n
+depends NTP
+
+source "rules/ntp_parse.in"
+source "rules/ntp_nonparse.in"
+
+endmenu