This is an automated email from the ASF dual-hosted git repository. masayuki pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 8bbb477316fa033b07222c1874685e4cfa9af497 Author: Xiang Xiao <[email protected]> AuthorDate: Sun Nov 20 07:09:18 2022 +0800 net/usrsock: Should select NET_[UDP|TCP]_NO_STACK instead NET_[UDP|TCP] Signed-off-by: Xiang Xiao <[email protected]> --- net/usrsock/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/usrsock/Kconfig b/net/usrsock/Kconfig index bfd3961e33..de963d271a 100644 --- a/net/usrsock/Kconfig +++ b/net/usrsock/Kconfig @@ -41,13 +41,13 @@ config NET_USRSOCK_NPOLLWAITERS config NET_USRSOCK_UDP bool "User-space daemon provides UDP sockets" default n - select NET_UDP + select NET_UDP_NO_STACK ---help--- config NET_USRSOCK_TCP bool "User-space daemon provides TCP sockets" default n - select NET_TCP + select NET_TCP_NO_STACK config NET_USRSOCK_OTHER bool "Enable other protocol families in addition of INET & INET6"
