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 6afed1011802a7dd4c9403d72b89db6f73229bf1 Author: wangjianyu3 <[email protected]> AuthorDate: Fri Jun 20 19:05:56 2025 +0800 system/fastboot: add depends for TCP poll Add TCP backlog dependence for poll(), network related configurations referenced to may has not enable it, without which the TCP handshake will fail. Signed-off-by: wangjianyu3 <[email protected]> --- system/fastboot/Kconfig | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/system/fastboot/Kconfig b/system/fastboot/Kconfig index 4b7cad267..f5b14cd02 100644 --- a/system/fastboot/Kconfig +++ b/system/fastboot/Kconfig @@ -6,9 +6,11 @@ menuconfig SYSTEM_FASTBOOTD bool "fastbootd" default n - depends on USBFASTBOOT || NET_TCP + depends on USBFASTBOOT || (NET_TCP && NET_TCPBACKLOG) ---help--- - support usb fastboot function. + Enable Fastboot daemon. + The USB transport depends on USBFASTBOOT. + The TCP network transport depends on NET_TCP and NET_TCPBACKLOG. if SYSTEM_FASTBOOTD
