Config.in 763 B

12345678910111213141516171819202122232425262728293031
  1. config BR2_PACKAGE_DNSMASQ
  2. bool "dnsmasq"
  3. help
  4. A lightweight DNS and DHCP server. It is intended to provide
  5. coupled DNS and DHCP service to a LAN.
  6. http://www.thekelleys.org.uk/dnsmasq/
  7. config BR2_PACKAGE_DNSMASQ_TFTP
  8. bool "tftp support"
  9. default y
  10. depends on BR2_PACKAGE_DNSMASQ
  11. help
  12. Enable TFTP support in dnsmasq.
  13. config BR2_PACKAGE_DNSMASQ_DHCP
  14. bool "dhcp support"
  15. default y
  16. depends on BR2_PACKAGE_DNSMASQ
  17. help
  18. Enable DHCP server support in dnsmasq.
  19. config BR2_PACKAGE_DNSMASQ_IDN
  20. bool "IDN support (BIG!)"
  21. depends on BR2_PACKAGE_DNSMASQ
  22. depends on BR2_USE_WCHAR
  23. select BR2_PACKAGE_LIBINTL
  24. select BR2_PACKAGE_LIBIDN
  25. help
  26. Enable IDN support in dnsmasq.
  27. This option is a big space taker since is pulls in many libraries.