Config.in 727 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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, arping,
  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_TRACEPATH
  26. bool "tracepath"
  27. default y
  28. help
  29. Installs tracepath.
  30. comment "ninfod needs a toolchain w/ threads"
  31. depends on !BR2_TOOLCHAIN_HAS_THREADS
  32. endif