Re: [U-Boot] [PATCH 4/9] sandbox: Avoid calling commands when not available

2016-03-03 Thread Stephen Warren
On 03/02/2016 05:25 PM, Simon Glass wrote: Hi Stephen, On 29 February 2016 at 16:39, Stephen Warren wrote: On 02/25/2016 09:00 PM, Simon Glass wrote: Don't try to run commands when not supported. diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c +int board_run_command(

Re: [U-Boot] [PATCH 4/9] sandbox: Avoid calling commands when not available

2016-03-02 Thread Simon Glass
Hi Stephen, On 29 February 2016 at 16:39, Stephen Warren wrote: > On 02/25/2016 09:00 PM, Simon Glass wrote: >> >> Don't try to run commands when not supported. > > >> diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c > > >> +int board_run_command(const char *cmdline) >> +{ >> +

Re: [U-Boot] [PATCH 4/9] sandbox: Avoid calling commands when not available

2016-02-29 Thread Stephen Warren
On 02/25/2016 09:00 PM, Simon Glass wrote: Don't try to run commands when not supported. diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c +int board_run_command(const char *cmdline) +{ + printf("## Commands are disabled. Please enable CONFIG_CMDLINE.\n"); + + ret

Re: [U-Boot] [PATCH 4/9] sandbox: Avoid calling commands when not available

2016-02-26 Thread Tom Rini
On Thu, Feb 25, 2016 at 09:00:51PM -0700, Simon Glass wrote: > Don't try to run commands when not supported. > > Signed-off-by: Simon Glass Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@l

[U-Boot] [PATCH 4/9] sandbox: Avoid calling commands when not available

2016-02-25 Thread Simon Glass
Don't try to run commands when not supported. Signed-off-by: Simon Glass --- arch/sandbox/cpu/start.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c index 0dda4fc..969618e 100644 --- a/arch/sandbox/cpu/start.c ++