diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-06-21 02:11:19 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-06-24 17:24:34 -0400 |
commit | f1f9d4fac5274d9b5ae1b0087fb0fcfa00687bac (patch) | |
tree | 381d5cc760f05e4f5bf7614a1d3e8bf438029eac /test | |
parent | b88d6f761445df5fd9d2dfe8eb5e32891a3843f0 (diff) | |
download | u-boot-imx-f1f9d4fac5274d9b5ae1b0087fb0fcfa00687bac.zip u-boot-imx-f1f9d4fac5274d9b5ae1b0087fb0fcfa00687bac.tar.gz u-boot-imx-f1f9d4fac5274d9b5ae1b0087fb0fcfa00687bac.tar.bz2 |
hush: complete renaming CONFIG_SYS_HUSH_PARSER to CONFIG_HUSH_PARSER
There is no more define of CONFIG_SYS_HUSH_PARSER. Rename some
remaining references and drop the backward compatible Kconfig entry.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/command_ut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/command_ut.c b/test/command_ut.c index 54bf62b..21283eb 100644 --- a/test/command_ut.c +++ b/test/command_ut.c @@ -43,7 +43,7 @@ static int do_ut_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) assert(run_command_list("false", -1, 0) == 1); assert(run_command_list("echo", -1, 0) == 0); -#ifdef CONFIG_SYS_HUSH_PARSER +#ifdef CONFIG_HUSH_PARSER run_command("setenv foo 'setenv black 1\nsetenv adder 2'", 0); run_command("run foo", 0); assert(getenv("black") != NULL); |