hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
config BR2_PACKAGE_DNSMASQ
   bool "dnsmasq"
   depends on BR2_USE_MMU # fork()
   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/doc.html
 
if BR2_PACKAGE_DNSMASQ
 
config BR2_PACKAGE_DNSMASQ_TFTP
   bool "tftp support"
   default y
   help
     Enable TFTP support in dnsmasq.
 
config BR2_PACKAGE_DNSMASQ_DHCP
   bool "dhcp support"
   default y
   help
     Enable DHCP server support in dnsmasq.
 
config BR2_PACKAGE_DNSMASQ_DNSSEC
   bool "DNSSEC support"
   select BR2_PACKAGE_GMP
   select BR2_PACKAGE_NETTLE
   help
     Enable DNSSEC validation and caching support.
 
config BR2_PACKAGE_DNSMASQ_IDN
   bool "IDN support"
   select BR2_PACKAGE_LIBIDN2 if !BR2_PACKAGE_LIBIDN
   help
     Enable IDN support in dnsmasq.
     This option is a big space taker since it pulls in many
     libraries.
 
config BR2_PACKAGE_DNSMASQ_LUA
   bool "Lua scripting support"
   depends on BR2_PACKAGE_LUA
   help
     Enable Lua scripting for dnsmasq
 
config BR2_PACKAGE_DNSMASQ_CONNTRACK
   bool "conntrack marking support"
   select BR2_PACKAGE_LIBNETFILTER_CONNTRACK
   help
     Enable DNS query connection marking in netfilter.
 
endif