Config.in 1.8 KB

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