Config.in 1.3 KB

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