Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. config BR2_PACKAGE_DNSMASQ
  2. bool "dnsmasq"
  3. depends on BR2_USE_MMU # fork()
  4. help
  5. A lightweight DNS and DHCP server. It is intended to provide
  6. coupled DNS and DHCP service to a LAN.
  7. http://www.thekelleys.org.uk/dnsmasq/doc.html
  8. if BR2_PACKAGE_DNSMASQ
  9. config BR2_PACKAGE_DNSMASQ_TFTP
  10. bool "tftp support"
  11. default y
  12. help
  13. Enable TFTP support in dnsmasq.
  14. config BR2_PACKAGE_DNSMASQ_DHCP
  15. bool "dhcp support"
  16. default y
  17. help
  18. Enable DHCP server support in dnsmasq.
  19. config BR2_PACKAGE_DNSMASQ_DNSSEC
  20. bool "DNSSEC support"
  21. select BR2_PACKAGE_GMP
  22. select BR2_PACKAGE_NETTLE
  23. help
  24. Enable DNSSEC validation and caching support.
  25. config BR2_PACKAGE_DNSMASQ_IDN
  26. bool "IDN support"
  27. select BR2_PACKAGE_LIBIDN2 if !BR2_PACKAGE_LIBIDN
  28. help
  29. Enable IDN support in dnsmasq.
  30. This option is a big space taker since it pulls in many
  31. libraries.
  32. config BR2_PACKAGE_DNSMASQ_LUA
  33. bool "Lua scripting support"
  34. depends on BR2_PACKAGE_LUA
  35. help
  36. Enable Lua scripting for dnsmasq
  37. config BR2_PACKAGE_DNSMASQ_CONNTRACK
  38. bool "conntrack marking support"
  39. select BR2_PACKAGE_LIBNETFILTER_CONNTRACK
  40. help
  41. Enable DNS query connection marking in netfilter.
  42. endif