From e9b457fca1965df50c60307d853d3c458b283be8 Mon Sep 17 00:00:00 2001 From: yinshengkai Date: Fri, 8 Mar 2024 18:14:14 +0800 Subject: [PATCH] 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 --- 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