Skip to content

Commit

Permalink
[nrf fromlist] kconfig: shell: fix incorrect shell stack size for Thread
Browse files Browse the repository at this point in the history
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.

Upstream PR: zephyrproject-rtos/zephyr#69783

Signed-off-by: Maciej Baczmanski <[email protected]>
(cherry picked from commit c346df93cf8d8a3be8a82fd2b23ae083dda64abb)
  • Loading branch information
maciejbaczmanski authored and jfischer-no committed Mar 7, 2024
1 parent 8d93a16 commit d10178e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions subsys/shell/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d10178e

Please sign in to comment.