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


The following commit(s) were added to refs/heads/master by this push:
     new e9b457fca telnet: Configure the telnet session stack to be the same as 
nsh
e9b457fca is described below

commit e9b457fca1965df50c60307d853d3c458b283be8
Author: yinshengkai <[email protected]>
AuthorDate: Fri Mar 8 18:14:14 2024 +0800

    telnet: Configure the telnet session stack to be the same as nsh
    
    Using the default 3K stack size will result in insufficient stack when 
executing certain commands.
    
    Signed-off-by: yinshengkai <[email protected]>
---
 system/telnetd/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system/telnetd/Kconfig b/system/telnetd/Kconfig
index bc50ec961..407e1ce5c 100644
--- a/system/telnetd/Kconfig
+++ b/system/telnetd/Kconfig
@@ -40,6 +40,6 @@ config SYSTEM_TELNETD_SESSION_PRIORITY
 
 config SYSTEM_TELNETD_SESSION_STACKSIZE
        int "Telnetd session task stack size"
-       default 3072
+       default SYSTEM_NSH_STACKSIZE
 
 endif # SYSTEM_TELNETD

Reply via email to