python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / ntp / Config.in
blob1af02dbc0ba6531631489aba3a7aa23319ea6001
1 config BR2_PACKAGE_NTP
2         bool "ntp"
3         select BR2_PACKAGE_LIBEVENT
4         select BR2_PACKAGE_OPENSSL
5         help
6           Network Time Protocol suite/programs.
7           Provides things like ntpd, ntpdate, ntpq, etc...
9           http://www.ntp.org/
11 if BR2_PACKAGE_NTP
13 config BR2_PACKAGE_NTP_SNTP
14         bool "sntp"
15         help
16           Simple network time protocol program
18 config BR2_PACKAGE_NTP_NTP_KEYGEN
19         bool "ntp-keygen"
20         help
21           Create a NTP host key
23 config BR2_PACKAGE_NTP_NTP_SHM_CLK
24         bool "SHM clock support"
25         help
26           Compile ntp with support for a SHM clock attached through
27           shared memory.
29 config BR2_PACKAGE_NTP_NTP_WAIT
30         bool "ntp-wait"
31         depends on BR2_PACKAGE_PERL
32         help
33           ntp-wait waits until the locally running ntpd is in state 4
34           (synchronized). This could be useful at boot time, to delay the
35           boot sequence until after "ntpd -g" has set the time.
37 config BR2_PACKAGE_NTP_NTPD
38         bool "ntpd"
39         default y
40         help
41           ntpd is the time synchronization daemon keeping your local
42           system date and time in sync and optionally serving time and date
43           information on the network via the NTP protocol.
45 config BR2_PACKAGE_NTP_NTPD_ATOM_PPS
46         bool "PPS support"
47         depends on BR2_PACKAGE_NTP_NTPD
48         select BR2_PACKAGE_PPS_TOOLS
49         help
50           Compile ntpd with the ability to use an ATOM PPS source.
52 config BR2_PACKAGE_NTP_NTPDATE
53         bool "ntpdate"
54         help
55           The ntpdate utility program is used to set the local date and time
56           from an NTP server given as an argument.
58 config BR2_PACKAGE_NTP_NTPDC
59         bool "ntpdc"
60         help
61           The ntpdc utility program is used to query an NTP daemon about
62           its current state and to request changes in that state.
64 config BR2_PACKAGE_NTP_NTPQ
65         bool "ntpq"
66         help
67           The ntpq utility program is used to query NTP servers requesting
68           information about current state and/or changes in that state.
70 config BR2_PACKAGE_NTP_NTPSNMPD
71         bool "ntpsnmpd"
72         depends on BR2_USE_MMU # netsnmp fork()
73         select BR2_PACKAGE_NETSNMP
74         help
75           Install ntpsnmpd NTP SNMP MIB agent.
77 config BR2_PACKAGE_NTP_NTPTIME
78         bool "ntptime"
79         help
80           The ntptime utility program is used to read and set kernel time
81           variables.
83 config BR2_PACKAGE_NTP_NTPTRACE
84         bool "ntptrace"
85         depends on BR2_PACKAGE_PERL
86         help
87           ntptrace is a perl script that uses the ntpq utility program to
88           follow the chain of NTP servers from a given host back to the
89           primary time source
91 config BR2_PACKAGE_NTP_TICKADJ
92         bool "tickadj"
93         help
94           set time-related kernel variables
96 endif