Config.in 2.6 KB

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