2006-01-25 21:56:55 +01:00
|
|
|
config BR2_PACKAGE_BIND
|
|
|
|
bool "bind"
|
2011-10-15 05:07:31 +02:00
|
|
|
depends on BR2_INET_IPV6
|
2014-06-10 12:18:25 +02:00
|
|
|
depends on BR2_USE_MMU # fork()
|
2014-12-03 22:41:29 +01:00
|
|
|
depends on !BR2_STATIC_LIBS
|
2006-01-25 21:56:55 +01:00
|
|
|
help
|
|
|
|
BIND (Berkeley Internet Name Domain) is an implementation of
|
|
|
|
the Domain Name System (DNS) protocols and provides an openly
|
|
|
|
redistributable reference implementation of the major
|
|
|
|
components of the Domain Name System, including:
|
|
|
|
|
|
|
|
* a Domain Name System server (named)
|
|
|
|
* a Domain Name System resolver library
|
2008-08-04 21:07:05 +02:00
|
|
|
* tools for verifying the proper operation of the DNS server
|
2006-01-25 21:56:55 +01:00
|
|
|
|
|
|
|
The BIND DNS Server is used on the vast majority of name
|
|
|
|
serving machines on the Internet, providing a robust and
|
|
|
|
stable architecture on top of which an organization's naming
|
|
|
|
architecture can be built. The resolver library included in
|
|
|
|
the BIND distribution provides the standard APIs for
|
|
|
|
translation between domain names and Internet addresses and is
|
2008-08-04 21:07:05 +02:00
|
|
|
intended to be linked with applications requiring name service.
|
2006-01-25 21:56:55 +01:00
|
|
|
|
|
|
|
http://www.isc.org/sw/bind/
|
2009-03-05 13:11:36 +01:00
|
|
|
|
2011-10-15 05:07:31 +02:00
|
|
|
if BR2_PACKAGE_BIND
|
|
|
|
|
|
|
|
config BR2_PACKAGE_BIND_SERVER
|
|
|
|
bool "Install server components"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Install server components (named, lwresd)
|
|
|
|
|
2009-03-05 13:11:36 +01:00
|
|
|
config BR2_PACKAGE_BIND_TOOLS
|
|
|
|
bool "Install tools"
|
|
|
|
help
|
2014-06-10 12:18:25 +02:00
|
|
|
Install tools (dig, host, nslookup, nsupdate)
|
2009-03-05 13:11:36 +01:00
|
|
|
|
2011-10-15 05:07:31 +02:00
|
|
|
endif
|
|
|
|
|
2015-03-30 23:07:30 +02:00
|
|
|
comment "bind needs a toolchain w/ IPv6, dynamic library"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_USE_MMU
|
2015-03-30 23:07:30 +02:00
|
|
|
depends on !BR2_INET_IPV6 || BR2_STATIC_LIBS
|