Config.in 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. config BR2_PACKAGE_NTP
  2. bool "ntp"
  3. select BR2_PACKAGE_LIBEVENT
  4. help
  5. Network Time Protocol suite/programs.
  6. Provides things like ntpd, ntpdate, ntpq, etc...
  7. http://www.ntp.org/
  8. if BR2_PACKAGE_NTP
  9. config BR2_PACKAGE_NTP_SNTP
  10. bool "sntp"
  11. help
  12. Simple network time protocol program
  13. config BR2_PACKAGE_NTP_NTP_KEYGEN
  14. bool "ntp-keygen"
  15. help
  16. Create a NTP host key
  17. config BR2_PACKAGE_NTP_NTP_WAIT
  18. bool "ntp-wait"
  19. depends on BR2_PACKAGE_PERL
  20. help
  21. ntp-wait waits until the locally running ntpd is in state 4
  22. (synchronized). This could be useful at boot time, to delay the
  23. boot sequence until after "ntpd -g" has set the time.
  24. config BR2_PACKAGE_NTP_NTPD
  25. bool "ntpd"
  26. default y
  27. help
  28. ntpd is the time synchronization daemon keeping your local
  29. system date and time in sync and optionally serving time and date
  30. information on the network via the NTP protocol.
  31. config BR2_PACKAGE_NTP_NTPD_ATOM_PPS
  32. bool "PPS support"
  33. depends on BR2_PACKAGE_NTP_NTPD
  34. select BR2_PACKAGE_PPS_TOOLS
  35. help
  36. Compile ntpd with the ability to use an ATOM PPS source.
  37. config BR2_PACKAGE_NTP_NTPDATE
  38. bool "ntpdate"
  39. help
  40. The ntpdate utility program is used to set the local date and time
  41. from an NTP server given as an argument.
  42. config BR2_PACKAGE_NTP_NTPDC
  43. bool "ntpdc"
  44. help
  45. The ntpdc utility program is used to query an NTP daemon about
  46. its current state and to request changes in that state.
  47. config BR2_PACKAGE_NTP_NTPQ
  48. bool "ntpq"
  49. help
  50. The ntpq utility program is used to query NTP servers requesting
  51. information about current state and/or changes in that state.
  52. config BR2_PACKAGE_NTP_NTPSNMPD
  53. bool "ntpsnmpd"
  54. depends on BR2_USE_MMU # netsnmp fork()
  55. select BR2_PACKAGE_NETSNMP
  56. help
  57. Install ntpsnmpd NTP SNMP MIB agent.
  58. config BR2_PACKAGE_NTP_NTPTRACE
  59. bool "ntptrace"
  60. depends on BR2_PACKAGE_PERL
  61. help
  62. ntptrace is a perl script that uses the ntpq utility program to
  63. follow the chain of NTP servers from a given host back to the
  64. primary time source
  65. config BR2_PACKAGE_NTP_TICKADJ
  66. bool "tickadj"
  67. help
  68. set time-related kernel variables
  69. endif