2006-01-25 21:56:55 +01:00
|
|
|
config BR2_PACKAGE_BIND
|
|
|
|
bool "bind"
|
2022-02-22 23:02:55 +01:00
|
|
|
depends on BR2_USE_MMU # fork(), libuv
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv
|
|
|
|
depends on !BR2_STATIC_LIBS # libuv
|
|
|
|
select BR2_PACKAGE_LIBUV
|
|
|
|
select BR2_PACKAGE_OPENSSL
|
2006-01-25 21:56:55 +01:00
|
|
|
help
|
2017-05-05 16:08:06 +02:00
|
|
|
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:
|
2006-01-25 21:56:55 +01:00
|
|
|
|
|
|
|
* a Domain Name System server (named)
|
|
|
|
* a Domain Name System resolver library
|
2017-05-05 16:08:06 +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
|
2017-05-05 16:08:06 +02:00
|
|
|
intended to be linked with applications requiring name
|
|
|
|
service.
|
2006-01-25 21:56:55 +01:00
|
|
|
|
2019-11-25 21:36:58 +01:00
|
|
|
https://www.isc.org/bind/
|
2009-03-05 13:11:36 +01:00
|
|
|
|
2022-02-22 23:02:55 +01:00
|
|
|
comment "bind needs a toolchain w/ NPTL, dynamic library"
|
|
|
|
depends on BR2_USE_MMU
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
|
|
|
|
|
2011-10-15 05:07:31 +02:00
|
|
|
if BR2_PACKAGE_BIND
|
|
|
|
|
|
|
|
config BR2_PACKAGE_BIND_SERVER
|
|
|
|
bool "Install server components"
|
|
|
|
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
|