Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. config BR2_PACKAGE_IPUTILS
  2. bool "iputils"
  3. depends on BR2_USE_MMU # fork()
  4. help
  5. This package is set of small useful utilities for Linux
  6. networking. It includes complete versions of ping, traceroute,
  7. etc.
  8. https://github.com/iputils/iputils
  9. if BR2_PACKAGE_IPUTILS
  10. config BR2_PACKAGE_IPUTILS_ARPING
  11. bool "arping"
  12. default y
  13. help
  14. Installs arping.
  15. config BR2_PACKAGE_IPUTILS_CLOCKDIFF
  16. bool "clockdiff"
  17. default y
  18. help
  19. Installs clockdiff.
  20. config BR2_PACKAGE_IPUTILS_PING
  21. bool "ping"
  22. default y
  23. help
  24. Installs ping.
  25. config BR2_PACKAGE_IPUTILS_RARPD
  26. bool "rarpd"
  27. help
  28. Installs rarpd.
  29. config BR2_PACKAGE_IPUTILS_RDISC
  30. bool "rdisc"
  31. default y
  32. help
  33. Installs rdisc.
  34. config BR2_PACKAGE_IPUTILS_RDISC_SERVER
  35. bool "rdisc (server code)"
  36. default y
  37. depends on BR2_PACKAGE_IPUTILS_RDISC
  38. help
  39. Builds rdisc with server code.
  40. config BR2_PACKAGE_IPUTILS_TFTPD
  41. bool "tftpd"
  42. help
  43. Installs tftpd.
  44. config BR2_PACKAGE_IPUTILS_TRACEPATH
  45. bool "tracepath"
  46. default y
  47. help
  48. Installs tracepath.
  49. config BR2_PACKAGE_IPUTILS_TRACEROUTE6
  50. bool "traceroute6"
  51. default y
  52. help
  53. Installs traceroute6.
  54. config BR2_PACKAGE_IPUTILS_NINFOD
  55. bool "ninfod"
  56. default y
  57. depends on BR2_TOOLCHAIN_HAS_THREADS # ninfod requires <pthread.h>
  58. help
  59. Installs ninfod.
  60. comment "ninfod needs a toolchain w/ threads"
  61. depends on !BR2_TOOLCHAIN_HAS_THREADS
  62. endif