From ff11b1df1e3f9dc4dfc10f3a93c5791da18c63f2 Mon Sep 17 00:00:00 2001 From: Maciej Baczmanski Date: Tue, 5 Mar 2024 09:01:16 +0100 Subject: [PATCH] kconfig: shell: fix incorrect shell stack size for Thread Shell stack size is too low for OpenThread without joiner functionality, causing overflow. In this commit, the value of stack size is not changed. Incorrect assigning of value for opentrhead with no joiner functionality has been removed. (cherry picked from commit 9be8310ac967a0d38459db8b7a285f846612002c) Original-Signed-off-by: Maciej Baczmanski GitOrigin-RevId: 9be8310ac967a0d38459db8b7a285f846612002c Change-Id: I29812883bcacd9962225cb3cf11b3e2a27113f5a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/zephyr/+/5356060 Tested-by: ChromeOS Prod (Robot) Commit-Queue: Tristan Honscheid Tested-by: Tristan Honscheid Reviewed-by: Tristan Honscheid --- subsys/shell/Kconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/subsys/shell/Kconfig b/subsys/shell/Kconfig index 45e469ac457..618570af1e2 100644 --- a/subsys/shell/Kconfig +++ b/subsys/shell/Kconfig @@ -40,9 +40,8 @@ endif config SHELL_STACK_SIZE int "Shell thread stack size" - default 3168 if OPENTHREAD_SHELL && OPENTHREAD_JOINER + default 3168 if OPENTHREAD_SHELL default 3072 if 64BIT - default 2616 if OPENTHREAD_SHELL default 2048 if MULTITHREADING default 0 if !MULTITHREADING help