Config.in 737 B

123456789101112131415161718192021222324252627282930
  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. select BR2_PACKAGE_LIBINTL
  23. select BR2_PACKAGE_LIBIDN
  24. help
  25. Enable IDN support in dnsmasq.
  26. This option is a big space taker since is pulls in many libraries.