Change the default of a few stack size configs to DEFAULT_TASK_STACKSIZE

These had the larger default for the sim.
It's no longer necessary as DEFAULT_TASK_STACKSIZE
can have different default for each arch.

See also:
    commit b1d44a81b4
This commit is contained in:
YAMAMOTO Takashi 2020-03-27 14:19:29 +09:00 committed by Xiang Xiao
parent e7156be066
commit 2ecdf4c554
2 changed files with 2 additions and 4 deletions

View File

@ -26,8 +26,7 @@ config SYSTEM_POPEN_SHPATH
config SYSTEM_POPEN_STACKSIZE
int "Shell stack size"
default 2048 if !ARCH_SIM
default 4096 if ARCH_SIM
default DEFAULT_TASK_STACKSIZE
---help---
The size of stack allocated for the shell.

View File

@ -25,8 +25,7 @@ config SYSTEM_SYSTEM_SHPATH
config SYSTEM_SYSTEM_STACKSIZE
int "system stack size"
default 2048 if !ARCH_SIM
default 4096 if ARCH_SIM
default DEFAULT_TASK_STACKSIZE
---help---
The size of stack allocated for the shell.