diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2020-10-26 09:31:42 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-12-01 14:12:28 -0500 |
commit | 48aee0afb62ee4ce11dd882600cfbcda60efb563 (patch) | |
tree | 16264d1217e152b56a99b65acfd698ce34ea4e56 /common/cli_hush.c | |
parent | 310f285e788dbc77fe804261ff5d016cd56ad523 (diff) |
cmd: Kconfig: migrate CONFIG_SYS_PROMPT_HUSH_PS2
Move CONFIG_SYS_PROMPT_HUSH_PS2 in Kconfig, depending
on CONFIG_HUSH_PARSER, and remove the default value defined
in cli_hush.c under __U_BOOT__.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/cli_hush.c')
-rw-r--r-- | common/cli_hush.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common/cli_hush.c b/common/cli_hush.c index 66995c255b..b7f0f0ff41 100644 --- a/common/cli_hush.c +++ b/common/cli_hush.c @@ -84,9 +84,6 @@ #include <cli.h> #include <cli_hush.h> #include <command.h> /* find_cmd */ -#ifndef CONFIG_SYS_PROMPT_HUSH_PS2 -#define CONFIG_SYS_PROMPT_HUSH_PS2 "> " -#endif #endif #ifndef __U_BOOT__ #include <ctype.h> /* isalpha, isdigit */ |