Re: [U-Boot] [PATCH 3/3] bootm: Add the missing PREP stage to bootz

2013-07-04 Thread Simon Glass
Hi Robert, On Thu, Jul 4, 2013 at 12:06 AM, Robert Nelson robertcnel...@gmail.comwrote: diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 7b3e459..5749057 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -1758,6 +1758,10 @@ static int bootz_start(cmd_tbl_t *cmdtp,

[U-Boot] [PATCH 3/3] bootm: Add the missing PREP stage to bootz

2013-07-03 Thread Simon Glass
In the recent bootm refactor, the PREP stage was missing in the bootz command. This causes unpredictable behaviour on platforms which need this stage to operate correctly (e.g. ARM). Signed-off-by: Simon Glass s...@chromium.org --- common/cmd_bootm.c | 3 ++- 1 file changed, 2 insertions(+), 1

Re: [U-Boot] [PATCH 3/3] bootm: Add the missing PREP stage to bootz

2013-07-03 Thread Robert Nelson
On Wed, Jul 3, 2013 at 9:12 AM, Simon Glass s...@chromium.org wrote: In the recent bootm refactor, the PREP stage was missing in the bootz command. This causes unpredictable behaviour on platforms which need this stage to operate correctly (e.g. ARM). Signed-off-by: Simon Glass

Re: [U-Boot] [PATCH 3/3] bootm: Add the missing PREP stage to bootz

2013-07-03 Thread Robert Nelson
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 7b3e459..5749057 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -1758,6 +1758,10 @@ static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc, int ret; void *zi_start, *zi_end; +

Re: [U-Boot] [PATCH 3/3] bootm: Add the missing PREP stage to bootz

2013-07-03 Thread Robert Nelson
On Wed, Jul 3, 2013 at 9:46 AM, Robert Nelson robertcnel...@gmail.com wrote: On Wed, Jul 3, 2013 at 9:12 AM, Simon Glass s...@chromium.org wrote: In the recent bootm refactor, the PREP stage was missing in the bootz command. This causes unpredictable behaviour on platforms which need this