Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. config BR2_PACKAGE_NDISC6
  2. bool "ndisc6 tools"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # c11
  5. help
  6. NDisc6 is a small collection of useful tools for IPv6
  7. networking
  8. http://www.remlab.net/ndisc6/
  9. if BR2_PACKAGE_NDISC6
  10. config BR2_PACKAGE_NDISC6_NAME2ADDR
  11. bool "name2addr"
  12. help
  13. name2addr perform DNS lookups from scripts.
  14. config BR2_PACKAGE_NDISC6_NDISC6
  15. bool "ndisc6"
  16. help
  17. ndisc6 performs ICMPv6 Neighbor Discovery in userland.
  18. config BR2_PACKAGE_NDISC6_RDISC6
  19. bool "rdisc6"
  20. help
  21. rdisc6 performs ICMPv6 Router Discovery in userland.
  22. config BR2_PACKAGE_NDISC6_RDNSSD
  23. bool "rdnssd"
  24. help
  25. IPv6 Recursive DNS Server discovery Daemon.
  26. config BR2_PACKAGE_NDISC6_RLTRACEROUTE6
  27. bool "rltraceroute6"
  28. help
  29. rltraceroute6 is an IPv6 traceroute implementation.
  30. config BR2_PACKAGE_NDISC6_TCPTRACEROUTE6
  31. bool "tcptraceroute6"
  32. help
  33. tcptraceroute6 is an TCP/IPv6 traceroute implementation.
  34. config BR2_PACKAGE_NDISC6_TCPSPRAY
  35. bool "tcpspray"
  36. help
  37. TCP/IP bandwidth measurement tool (Discard and Echo client).
  38. endif
  39. comment "ndisc6 needs a toolchain w/ gcc >= 4.7"
  40. depends on BR2_USE_MMU
  41. depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7