Config.in 826 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. if BR2_PACKAGE_DNSMASQ
  8. config BR2_PACKAGE_DNSMASQ_TFTP
  9. bool "tftp support"
  10. default y
  11. help
  12. Enable TFTP support in dnsmasq.
  13. config BR2_PACKAGE_DNSMASQ_DHCP
  14. bool "dhcp support"
  15. default y
  16. help
  17. Enable DHCP server support in dnsmasq.
  18. config BR2_PACKAGE_DNSMASQ_IDN
  19. bool "IDN support (BIG!)"
  20. depends on BR2_USE_WCHAR
  21. select BR2_PACKAGE_LIBINTL
  22. select BR2_PACKAGE_LIBIDN
  23. help
  24. Enable IDN support in dnsmasq.
  25. This option is a big space taker since is pulls in many libraries.
  26. config BR2_PACKAGE_DNSMASQ_LUA
  27. bool "Lua scripting support"
  28. select BR2_PACKAGE_LUA
  29. help
  30. Enable lua scripting for dnsmasq
  31. endif