Re: [U-Boot] [PATCH v2 6/8] sandbox: Allow processing instead of or before main loop

2012-01-22 Thread Simon Glass
Hi Mike, On Fri, Jan 20, 2012 at 11:00 AM, Mike Frysinger wrote: > On Tuesday 10 January 2012 19:45:50 Simon Glass wrote: >> In order to pass command line arguments to sandbox we need to be able >> to act on them. So take control back at the end of board_init_r() from >> where we can call the mai

Re: [U-Boot] [PATCH v2 6/8] sandbox: Allow processing instead of or before main loop

2012-01-20 Thread Mike Frysinger
On Tuesday 10 January 2012 19:45:50 Simon Glass wrote: > In order to pass command line arguments to sandbox we need to be able > to act on them. So take control back at the end of board_init_r() from > where we can call the main loop or do something else. does this need to be done this early ? pa

[U-Boot] [PATCH v2 6/8] sandbox: Allow processing instead of or before main loop

2012-01-10 Thread Simon Glass
In order to pass command line arguments to sandbox we need to be able to act on them. So take control back at the end of board_init_r() from where we can call the main loop or do something else. Signed-off-by: Simon Glass --- Changes in v2: - Call cpu_main_loop() from board_init_r() arch/sandbo