diff options
author | Tom Rini <trini@konsulko.com> | 2022-03-30 18:07:14 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-08 09:05:19 -0400 |
commit | dafcd96d8ad698693188cab47c21bc399a4cc316 (patch) | |
tree | cb6df1b1a852ec2df452e605db28b3d93b17e450 /cmd | |
parent | bd3ef27886dcb1c496a4583eb8b894296edf045d (diff) | |
download | u-boot-dafcd96d8ad698693188cab47c21bc399a4cc316.tar.gz |
Convert CONFIG_CMDLINE_PS_SUPPORT to Kconfig
This converts the following to Kconfig:
CONFIG_CMDLINE_PS_SUPPORT
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index c5eb71cea6c..d3abe3a06bf 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -31,6 +31,13 @@ config CMDLINE_EDITING Enable editing and History functions for interactive command line input operations +config CMDLINE_PS_SUPPORT + bool "Enable support for changing the command prompt string at run-time" + depends on HUSH_PARSER + help + Only static string in the prompt is supported so far. The string is + obtained from environment variables PS1 and PS2. + config AUTO_COMPLETE bool "Enable auto complete using TAB" depends on CMDLINE |