apps/netutils/dhcpc/Kconfig: Auto-select CONFIG_NET_UDP_BINDTODEVICE

DHCPC depends on CONFIG_NET_UDP_BINDTODEVICE in many cases.  Safest thing is to just auto-select it whenever DHCPC is selected.
This commit is contained in:
Gregory Nutt 2021-04-28 14:51:17 -06:00 committed by Xiang Xiao
parent 5b26068635
commit 844b193713

View File

@ -7,6 +7,7 @@ config NETUTILS_DHCPC
bool "DHCP client"
default n
depends on NET_UDP && NET_BROADCAST && NET_IPv4
select NET_UDP_BINDTODEVICE
---help---
Enable support for the DHCP client.