From 20ffb1a3a3b590d52890ee865a28442390e5d16c Mon Sep 17 00:00:00 2001 From: Alan Carvalho de Assis Date: Sun, 5 Jul 2026 09:56:53 -0300 Subject: [PATCH] apps/nsh: Don't disable error by default NSH error shouldn't be disabled by default, even when in SMALL Memory because it will make difficult to discover why things are not working. It should be disabled manually by experienced dev. Signed-off-by: Alan C. Assis --- nshlib/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nshlib/Kconfig b/nshlib/Kconfig index 80476e7f5..f00137f0b 100644 --- a/nshlib/Kconfig +++ b/nshlib/Kconfig @@ -456,7 +456,7 @@ config NSH_DISABLE_HELP config NSH_DISABLE_ERROR_PRINT bool "Disable NSH Error Printing" - default DEFAULT_SMALL + default n config NSH_DISABLE_HEXDUMP bool "Disable hexdump"