From 3833152a6e9271f2869176a0bf36e028381a4d72 Mon Sep 17 00:00:00 2001 From: Alex Tsitsiura Date: Fri, 29 Sep 2023 19:26:11 +0300 Subject: [PATCH] [Telink] Disable not used shell modules (#29486) * [Telink] Disable not used shell modules * [Telink] restore default shell stack size after tests with light-switch --- config/telink/chip-module/Kconfig.defaults | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/config/telink/chip-module/Kconfig.defaults b/config/telink/chip-module/Kconfig.defaults index d8312e18c62f3e..9933e961ffbfb5 100644 --- a/config/telink/chip-module/Kconfig.defaults +++ b/config/telink/chip-module/Kconfig.defaults @@ -261,4 +261,45 @@ config OPENTHREAD_EXTERNAL_HEAP config GETOPT_LONG default y +# Disable not used shell modules + +config SHELL_WILDCARD + default n + +config SHELL_VT100_COLORS + default n + +config SHELL_STATS + default n + +config KERNEL_SHELL + default n + +config SENSOR_SHELL + default n + +config DEVICE_SHELL + default n + +config DATE_SHELL + default n + +config DEVMEM_SHELL + default n + +config MCUBOOT_SHELL + default n + +config FLASH_SHELL + default n + +config HWINFO_SHELL + default n + +config PWM_SHELL + default n + +config OPENTHREAD_SHELL + default n + endif