xref: /OK3568_Linux_fs/buildroot/package/ndisc6/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
9	  http://www.remlab.net/ndisc6/
10
11if BR2_PACKAGE_NDISC6
12
13config BR2_PACKAGE_NDISC6_NAME2ADDR
14	bool "name2addr"
15	help
16	  name2addr perform DNS lookups from scripts.
17
18config BR2_PACKAGE_NDISC6_NDISC6
19	bool "ndisc6"
20	help
21	  ndisc6 performs ICMPv6 Neighbor Discovery in userland.
22
23config BR2_PACKAGE_NDISC6_RDISC6
24	bool "rdisc6"
25	help
26	  rdisc6 performs ICMPv6 Router Discovery in userland.
27
28config BR2_PACKAGE_NDISC6_RDNSSD
29	bool "rdnssd"
30	help
31	  IPv6 Recursive DNS Server discovery Daemon.
32
33config BR2_PACKAGE_NDISC6_RLTRACEROUTE6
34	bool "rltraceroute6"
35	help
36	  rltraceroute6 is an IPv6 traceroute implementation.
37
38config BR2_PACKAGE_NDISC6_TCPTRACEROUTE6
39	bool "tcptraceroute6"
40	help
41	  tcptraceroute6 is an TCP/IPv6 traceroute implementation.
42
43config BR2_PACKAGE_NDISC6_TCPSPRAY
44	bool "tcpspray"
45	help
46	  TCP/IP bandwidth measurement tool (Discard and Echo client).
47
48endif
49
50comment "ndisc6 needs a toolchain w/ gcc >= 4.7"
51	depends on BR2_USE_MMU
52	depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
53