This is an automated email from the ASF dual-hosted git repository.
acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new caa7d7faa apps/nsh: Don't disable error by default
caa7d7faa is described below
commit caa7d7faa535aaa4ce114187211735cd006c9940
Author: Alan Carvalho de Assis <[email protected]>
AuthorDate: Sun Jul 5 09:56:53 2026 -0300
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 <[email protected]>
---
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"