This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch releases/13.0
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


The following commit(s) were added to refs/heads/releases/13.0 by this push:
     new 20ffb1a3a apps/nsh: Don't disable error by default
20ffb1a3a is described below

commit 20ffb1a3a3b590d52890ee865a28442390e5d16c
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 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"

Reply via email to