diff mbox

[U-Boot,v3,3/4] sandbox: Use the new run_command()

Message ID 1333179058-19598-3-git-send-email-sjg@chromium.org
State Accepted, archived
Commit 61ddce07f8b96c5df7d00466b4da9edaecb0eff1
Headers show

Commit Message

Simon Glass March 31, 2012, 7:30 a.m. UTC
Now that run_command() handles both parsers, clean up sandbox to use it.
This fixes a build error.

Signed-off-by: Simon Glass <sjg@chromium.org>
---
Changes in v3:
- Add new patch to clean up sandbox's run_command() usage

 arch/sandbox/cpu/start.c |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)

Comments

Mike Frysinger April 1, 2012, 7:53 p.m. UTC | #1
On Saturday 31 March 2012 03:30:57 Simon Glass wrote:
> Now that run_command() handles both parsers, clean up sandbox to use it.
> This fixes a build error.

Acked-by: Mike Frysinger <vapier@gentoo.org>
-mike
Wolfgang Denk April 23, 2012, 8:54 p.m. UTC | #2
Dear Simon Glass,

In message <1333179058-19598-3-git-send-email-sjg@chromium.org> you wrote:
> Now that run_command() handles both parsers, clean up sandbox to use it.
> This fixes a build error.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
> Changes in v3:
> - Add new patch to clean up sandbox's run_command() usage
> 
>  arch/sandbox/cpu/start.c |    6 ------
>  1 files changed, 0 insertions(+), 6 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk
diff mbox

Patch

diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c
index 6c3e8eb..7603bf9 100644
--- a/arch/sandbox/cpu/start.c
+++ b/arch/sandbox/cpu/start.c
@@ -90,13 +90,7 @@  int sandbox_main_loop_init(void)
 
 	/* Execute command if required */
 	if (state->cmd) {
-		/* TODO: redo this when cmd tidy-up series lands */
-#ifdef CONFIG_SYS_HUSH_PARSER
 		run_command(state->cmd, 0);
-#else
-		parse_string_outer(state->cmd, FLAG_PARSE_SEMICOLON |
-				    FLAG_EXIT_FROM_LOOP);
-#endif
 		os_exit(state->exit_type);
 	}