diff options
| author | Simon Glass <sjg@chromium.org> | 2013-04-20 08:42:48 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-05-01 11:17:21 -0400 | 
| commit | 39042d821ed882d448f1bcd6505df7fb6700b8f0 (patch) | |
| tree | ca6b4f2352d2ef274a7b2917a06ddf8b2b53e39d /arch/sandbox/cpu/start.c | |
| parent | 095686d3f5e0b46e76d40e3ad0b75982a215024d (diff) | |
| download | olio-uboot-2014.01-39042d821ed882d448f1bcd6505df7fb6700b8f0.tar.xz olio-uboot-2014.01-39042d821ed882d448f1bcd6505df7fb6700b8f0.zip | |
sandbox: Allow -c argument to provide a command list
This allows passing of entire scripts to sandbox with the -c argument,
which is useful for testing. Commands can be delimited with a newline
or semicolon.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/cpu/start.c')
| -rw-r--r-- | arch/sandbox/cpu/start.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c index 2fcec8b36..ae6e16cab 100644 --- a/arch/sandbox/cpu/start.c +++ b/arch/sandbox/cpu/start.c @@ -90,7 +90,7 @@ int sandbox_main_loop_init(void)  	/* Execute command if required */  	if (state->cmd) { -		run_command(state->cmd, 0); +		run_command_list(state->cmd, -1, 0);  		os_exit(state->exit_type);  	} |