@@ -22,7 +22,6 @@ source "subsys/net/Kconfig.template.log_config.net"
22
22
23
23
config NET_DHCPV4_INITIAL_DELAY_MAX
24
24
int "Maximum time out for initial discover request"
25
- depends on NET_DHCPV4
26
25
default 10
27
26
range 2 10
28
27
help
@@ -31,15 +30,14 @@ config NET_DHCPV4_INITIAL_DELAY_MAX
31
30
32
31
config NET_DHCPV4_OPTION_CALLBACKS
33
32
bool "Option callbacks"
34
- depends on NET_DHCPV4
35
33
help
36
34
If set, custom callbacks for arbitrary DHCP options
37
35
can be added. These can be used to support otherwise
38
36
DHCP options not used by the rest of the system.
39
37
40
38
config NET_DHCPV4_MAX_REQUESTED_OPTIONS
41
39
int "Maximum number of requested options"
42
- depends on NET_DHCPV4 && NET_DHCPV4_OPTION_CALLBACKS
40
+ depends on NET_DHCPV4_OPTION_CALLBACKS
43
41
default 10
44
42
range 3 $(UINT8_MAX)
45
43
help
@@ -49,23 +47,20 @@ config NET_DHCPV4_MAX_REQUESTED_OPTIONS
49
47
50
48
config NET_DHCPV4_OPTION_CALLBACKS_VENDOR_SPECIFIC
51
49
bool "Encapsulated vendor specific option callbacks"
52
- depends on NET_DHCPV4
53
50
select NET_DHCPV4_OPTION_CALLBACKS
54
51
help
55
52
If set, custom callbacks for encapsulated vendor-specific
56
53
information in DHCP option 43 can be added.
57
54
58
55
config NET_DHCPV4_ACCEPT_UNICAST
59
56
bool "Accept unicast DHCPv4 traffic"
60
- depends on NET_DHCPV4
61
57
default y
62
58
help
63
59
If set, the network stack will accept unicast DHCPv4 responses from
64
60
servers, before the assigned address is configured on the interface.
65
61
66
62
config NET_DHCPV4_VENDOR_CLASS_IDENTIFIER
67
63
bool "Send vendor class identifier in DHCPv4 request"
68
- depends on NET_DHCPV4
69
64
help
70
65
If set, the network stack will include the specified string in the
71
66
DHCPv4 vendor class identifier option in the DHCPv4 request.
0 commit comments