From: Francis Laniel <francis.laniel@amarulasolutions.com>
Date: Fri, 22 Dec 2023 21:02:43 +0000 (+0100)
Subject: cmd: Set modern hush as default shell
X-Git-Tag: v2025.01-rc5-pxa1908~579^2~11^2~1
X-Git-Url: http://git.dujemihanovic.xyz/%7B%7B%20.Permalink%20%7D%7D?a=commitdiff_plain;h=78912cfde281146d28254b230ecaa9b06722e6ff;p=u-boot.git

cmd: Set modern hush as default shell

Signed-off-by: Francis Laniel <francis.laniel@amarulasolutions.com>
---

diff --git a/cmd/Kconfig b/cmd/Kconfig
index e25578cde3..26aeeeed03 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -27,21 +27,17 @@ depends on HUSH_PARSER
 
 config HUSH_OLD_PARSER
 	bool "Use hush old parser"
-	default y
 	help
 	  This option enables the old flavor of hush based on hush Busybox from
 	  2005.
 
-	  It is actually the default U-Boot shell when decided to use hush as shell.
-
 config HUSH_MODERN_PARSER
 	bool "Use hush modern parser"
+	default y
 	help
 	  This option enables the new flavor of hush based on hush upstream
 	  Busybox.
 
-	  This parser is experimental and not well tested.
-
 config HUSH_SELECTABLE
 	bool
 	default y if HUSH_OLD_PARSER && HUSH_MODERN_PARSER