diff options
author | Tom Rini <trini@konsulko.com> | 2023-04-26 10:53:14 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-04-26 11:08:27 -0400 |
commit | 370c6718fb6d3342b613642f85c388531c19309d (patch) | |
tree | 70f22b7fb1584a4c9ed9e9f0588fb8eb3cb62c68 | |
parent | 7b3b4f71ebee202a7e74f04029df0c36c050f416 (diff) | |
download | u-boot-WIP/hush-parser-def-y.zip u-boot-WIP/hush-parser-def-y.tar.gz u-boot-WIP/hush-parser-def-y.tar.bz2 |
cmd: Enable HUSH_PARSER by defaultWIP/hush-parser-def-y
The vast majority of platforms enable the hush parser today. Make this
be enabled by default.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index e45b884..9772a59 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -13,6 +13,7 @@ config CMDLINE config HUSH_PARSER bool "Use hush shell" + default y depends on CMDLINE help This option enables the "hush" shell (from Busybox) as command line |