Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-11 Thread Andrew Murray
Hi Mike, On 11 September 2011 21:17, Mike Frysinger wrote: > > your change to the if statement is pointless ? You are right - I thought I was going crazy then realized I made this patch on an earlier version of the code which didn't have the load == image_start check in the first line (see http:

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-11 Thread Mike Frysinger
On Sunday, September 11, 2011 16:13:26 Andrew Murray wrote: > On 11 September 2011 20:22, Mike Frysinger wrote: > > On Saturday, September 10, 2011 10:57:47 Andrew Murray wrote: > > > --- a/common/cmd_bootm.c > > > +++ b/common/cmd_bootm.c > > > > > > if (load == blob_start || load

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-11 Thread Andrew Murray
On 11 September 2011 20:22, Mike Frysinger wrote: > On Saturday, September 10, 2011 10:57:47 Andrew Murray wrote: > > --- a/common/cmd_bootm.c > > +++ b/common/cmd_bootm.c > > > > if (load == blob_start || load == image_start) { > > .. > > -

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-11 Thread Mike Frysinger
On Saturday, September 10, 2011 10:57:47 Andrew Murray wrote: > --- a/common/cmd_bootm.c > +++ b/common/cmd_bootm.c > > if (load == blob_start || load == image_start) { > .. > - } else { > + } else if (load != image_start) { sorr

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-10 Thread Andrew Murray
Hi, On 10 September 2011 16:06, Wolfgang Denk wrote: > Sorry, but I don't want to have this output. It would be always be > printed for all systems booting from NOR flash, where the copy > operation is absolutely normal. > > Also, on all PowerPC systems it is absolutely normal that you must > l

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-10 Thread Wolfgang Denk
Dear Andrew Murray, In message <131567-6270-1-git-send-email-amur...@theiet.org> you wrote: > It's common for the bootm command to move a provided image in memory > prior to it's execution - this move can contribute to increased boot > times. This move is often seen in poorly configured device

[U-Boot] [PATCH] Improve output of bootm command

2011-09-10 Thread Andrew Murray
It's common for the bootm command to move a provided image in memory prior to it's execution - this move can contribute to increased boot times. This move is often seen in poorly configured devices which boot from NAND. This patch improves the output of the bootm command such that when a move occu