From caa7d7faa535aaa4ce114187211735cd006c9940 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 01103ee29..1f78a50ae 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"