You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/04/29 06:27:57 UTC

[incubator-nuttx-apps] branch master updated: netutils: dhcpc: Fix Kconfig for the usrsock

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 f902d90  netutils: dhcpc: Fix Kconfig for the usrsock
f902d90 is described below

commit f902d900e13b865f7a2888cd92b7e8797dd7720c
Author: Masayuki Ishikawa <ma...@gmail.com>
AuthorDate: Thu Apr 29 13:46:24 2021 +0900

    netutils: dhcpc: Fix Kconfig for the usrsock
    
    Summary:
    - This commit fixes the renew command with the usrsock
    
    Impact:
    - None
    
    Testing:
    - Tested with spresense:wifi and esp32-devkitc:wapi
    
    Signed-off-by: Masayuki Ishikawa <Ma...@jp.sony.com>
---
 netutils/dhcpc/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/netutils/dhcpc/Kconfig b/netutils/dhcpc/Kconfig
index 4b0f3df..8c2cf4c 100644
--- a/netutils/dhcpc/Kconfig
+++ b/netutils/dhcpc/Kconfig
@@ -7,7 +7,7 @@ config NETUTILS_DHCPC
 	bool "DHCP client"
 	default n
 	depends on NET_UDP && NET_BROADCAST && NET_IPv4
-	select NET_UDP_BINDTODEVICE
+	select NET_UDP_BINDTODEVICE if !NET_UDP_NO_STACK
 	---help---
 		Enable support for the DHCP client.