This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 844b193  apps/netutils/dhcpc/Kconfig:  Auto-select 
CONFIG_NET_UDP_BINDTODEVICE
844b193 is described below

commit 844b193713fd7c3bd9e762c2a929e1e362e8a005
Author: Gregory Nutt <[email protected]>
AuthorDate: Wed Apr 28 14:51:17 2021 -0600

    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.
---
 netutils/dhcpc/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/netutils/dhcpc/Kconfig b/netutils/dhcpc/Kconfig
index 368b162..4b0f3df 100644
--- a/netutils/dhcpc/Kconfig
+++ b/netutils/dhcpc/Kconfig
@@ -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.
 

Reply via email to