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/nuttx-apps.git
commit 60f5a68c96746833effbec718b40518b042ce7d6 Author: yangsong8 <[email protected]> AuthorDate: Mon Jan 6 11:31:45 2025 +0800 adb: adb tcp server configuration depends on NET_TCPBACKLOG For TCP-based adb, if the current CPU contains TCP protocol stack, then NET_TCPBACKLOG needs to be enabled. Signed-off-by: yangsong8 <[email protected]> --- system/adb/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/adb/Kconfig b/system/adb/Kconfig index 14b900b5a..05296cca7 100644 --- a/system/adb/Kconfig +++ b/system/adb/Kconfig @@ -95,7 +95,7 @@ config ADBD_FRAME_MAX config ADBD_TCP_SERVER bool "Network socket transport support" - depends on NET_TCP + depends on NET_TCP_NO_STACK || NET_TCPBACKLOG default n ---help--- Run adb daemon on network socket.
