From 2ecdf4c554cc76202dcae9b58185c6dbcf16f9ce Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Fri, 27 Mar 2020 14:19:29 +0900 Subject: [PATCH] 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 b1d44a81b450a23511dcbd31b783fe2cf4a935f9 --- system/popen/Kconfig | 3 +-- system/system/Kconfig | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/system/popen/Kconfig b/system/popen/Kconfig index 9d4814bbb..9c7527baa 100644 --- a/system/popen/Kconfig +++ b/system/popen/Kconfig @@ -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. diff --git a/system/system/Kconfig b/system/system/Kconfig index 246119716..36be798e4 100644 --- a/system/system/Kconfig +++ b/system/system/Kconfig @@ -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.