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 953fa21fef858688a773f4111e74232e172b9959
Author: yangsong8 <[email protected]>
AuthorDate: Thu Dec 5 12:08:07 2024 +0800

    adb: adb shell depends on SCHED_CHILD_STATUS
    
    Without this configuration, when executing exit in adb shell,
    adb will not be able to exit because it cannot receive the
    close packet.
    
    Signed-off-by: yangsong8 <[email protected]>
---
 system/adb/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/system/adb/Kconfig b/system/adb/Kconfig
index 06d7f940a..14b900b5a 100644
--- a/system/adb/Kconfig
+++ b/system/adb/Kconfig
@@ -174,6 +174,7 @@ config ADBD_SHELL_SERVICE
        depends on SYSTEM_NSH
        depends on LIBC_EXECFUNCS
        depends on PSEUDOTERM
+       depends on SCHED_CHILD_STATUS
        default n
        ---help---
                Enable "adb shell" feature.

Reply via email to