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