mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
Patch by Gustavo Zacarias <gustavo@zacarias.com.ar> Closes #145. Current bind package is version 9.3.2 which is from the 9.3 branch and is EOLed. It has many security bugs probably fixed in 9.3.6-P1 but since it won't be supported for long it's probably metter to move on to a supported branch. CVE-2009-0025, CVE-2008-1447, CVE-2008-0122, CVE-2007-2926 and probably more. While at it migrate to Makefile.autotools.in too. Also introduced an option for/not to install userland tools (dig, host, nslookup, nsupdate). [ Peter: don't install into staging ]
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
comment "bind has no inherent support for AVR32"
|
|
depends on BR2_avr32 && BR2_PACKAGE_BIND
|
|
|
|
config BR2_PACKAGE_BIND
|
|
bool "bind"
|
|
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
|
|
* tools for verifying the proper operation of the DNS server
|
|
|
|
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
|
|
intended to be linked with applications requiring name service.
|
|
|
|
http://www.isc.org/sw/bind/
|
|
|
|
config BR2_PACKAGE_BIND_TOOLS
|
|
bool "Install tools"
|
|
depends on BR2_PACKAGE_BIND
|
|
help
|
|
Install tools (host, nslookup, dig, nsupdate)
|
|
|