882e137608
Closes #717 Dnsmasq 2.51 introduces IDN support, add it to the package. Newsworthy items: * Add support for internationalised DNS (IDN). * Improved upstream nameserver checks for slow nameservers. * Improved TFTP support (win/dos filenames, new tftpserver-address option for DHCP). Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
31 lines
737 B
Plaintext
31 lines
737 B
Plaintext
config BR2_PACKAGE_DNSMASQ
|
|
bool "dnsmasq"
|
|
help
|
|
A lightweight DNS and DHCP server. It is intended to provide
|
|
coupled DNS and DHCP service to a LAN.
|
|
|
|
http://www.thekelleys.org.uk/dnsmasq/
|
|
|
|
config BR2_PACKAGE_DNSMASQ_TFTP
|
|
bool "tftp support"
|
|
default y
|
|
depends on BR2_PACKAGE_DNSMASQ
|
|
help
|
|
Enable TFTP support in dnsmasq.
|
|
|
|
config BR2_PACKAGE_DNSMASQ_DHCP
|
|
bool "dhcp support"
|
|
default y
|
|
depends on BR2_PACKAGE_DNSMASQ
|
|
help
|
|
Enable DHCP server support in dnsmasq.
|
|
|
|
config BR2_PACKAGE_DNSMASQ_IDN
|
|
bool "IDN support (BIG!)"
|
|
depends on BR2_PACKAGE_DNSMASQ
|
|
select BR2_PACKAGE_LIBINTL
|
|
select BR2_PACKAGE_LIBIDN
|
|
help
|
|
Enable IDN support in dnsmasq.
|
|
This option is a big space taker since is pulls in many libraries.
|