]> git.karo-electronics.de Git - karo-tx-uboot.git/commit
cli: hush: Adjust 'run' command to run each line of the env var
authorSimon Glass <sjg@chromium.org>
Tue, 7 Oct 2014 19:59:43 +0000 (13:59 -0600)
committerTom Rini <trini@ti.com>
Mon, 27 Oct 2014 15:03:33 +0000 (11:03 -0400)
commit87b6398b46421c5dadacdda6b4be2d9d71588107
tree8bccf0ee67b008451ede6289836c07bb956b3c45
parent0cf876154922118d8fb1b4c30f527c95a113bef3
cli: hush: Adjust 'run' command to run each line of the env var

The run command treats each argument an an environment variable. It gets the
value of each variable and executes it as a command. If an environment
variable contains a newline and the hush cli is used, it is supposed to
execute each line one after the other.

Normally a newline signals to hush to exit - this is used in normal command
line entry - after a command is entered we want to return to allow the user
to enter the next one. But environment variables obviously need to execute
to completion.

Add a special case for the execution of environment variables which
continues when a newline is seen, and add a few tests to check this
behaviour.

Note: it's not impossible that this may cause regressions in other areas.
I can't think of a case but with any change of behaviour with limited test
coverage there is always a risk. From what I can tell this behaviour has
been around since at least U-Boot 2011.03, although this pre-dates sandbox
and I have not tested it on real hardware.

Reported-by: Wolfgang Denk <wd@denx.de>
Signed-off-by: Simon Glass <sjg@chromium.org>
common/cli.c
common/cli_hush.c
include/cli_hush.h
include/command.h
test/command_ut.c