Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_PACKAGE_BIND
  2. bool "bind"
  3. depends on BR2_INET_IPV6
  4. depends on BR2_LARGEFILE
  5. # fork()
  6. depends on BR2_USE_MMU
  7. help
  8. BIND (Berkeley Internet Name Domain) is an implementation of
  9. the Domain Name System (DNS) protocols and provides an openly
  10. redistributable reference implementation of the major
  11. components of the Domain Name System, including:
  12. * a Domain Name System server (named)
  13. * a Domain Name System resolver library
  14. * tools for verifying the proper operation of the DNS server
  15. The BIND DNS Server is used on the vast majority of name
  16. serving machines on the Internet, providing a robust and
  17. stable architecture on top of which an organization's naming
  18. architecture can be built. The resolver library included in
  19. the BIND distribution provides the standard APIs for
  20. translation between domain names and Internet addresses and is
  21. intended to be linked with applications requiring name service.
  22. http://www.isc.org/sw/bind/
  23. if BR2_PACKAGE_BIND
  24. config BR2_PACKAGE_BIND_SERVER
  25. bool "Install server components"
  26. default y
  27. help
  28. Install server components (named, lwresd)
  29. config BR2_PACKAGE_BIND_TOOLS
  30. bool "Install tools"
  31. help
  32. Install tools (host, nslookup, dig, nsupdate)
  33. endif
  34. comment "bind requires a toolchain with LARGEFILE and IPV6 support"
  35. depends on !(BR2_LARGEFILE || BR2_INET_IPV6)