Re: [U-Boot] [PATCH] bootm: Reduce the unnecessary memmove

2009-02-22 Thread Wolfgang Denk
Dear Larry Johnson, In message <49a177d8.1050...@acm.org> you wrote: > > > Although load address and image start address are same address, > > bootm command always does memmove. > > That is unnecessary memmove and can be taken few milliseconds > > (about 500 msec to 1000 msec). > > If skip this me

Re: [U-Boot] [PATCH] bootm: Reduce the unnecessary memmove

2009-02-22 Thread Larry Johnson
Minkyu Kang wrote: > Although load address and image start address are same address, > bootm command always does memmove. > That is unnecessary memmove and can be taken few milliseconds > (about 500 msec to 1000 msec). > If skip this memmove, we can reduce the boot time. > > Signed-off-by: Minkyu

Re: [U-Boot] [PATCH] bootm: Reduce the unnecessary memmove

2009-02-21 Thread Wolfgang Denk
Dear Minkyu Kang, In message <499b50e0.8040...@samsung.com> you wrote: > Although load address and image start address are same address, > bootm command always does memmove. > That is unnecessary memmove and can be taken few milliseconds > (about 500 msec to 1000 msec). > If skip this memmove, we

[U-Boot] [PATCH] bootm: Reduce the unnecessary memmove

2009-02-17 Thread Minkyu Kang
Although load address and image start address are same address, bootm command always does memmove. That is unnecessary memmove and can be taken few milliseconds (about 500 msec to 1000 msec). If skip this memmove, we can reduce the boot time. Signed-off-by: Minkyu Kang --- common/cmd_bootm.c |

Re: [U-Boot] [PATCH] bootm: Reduce the unnecessary memmove

2009-02-17 Thread Wolfgang Denk
Dear Minkyu Kang, In message <499a676c.90...@samsung.com> you wrote: > Although load address and image start address are same address, bootm command > does memmove. > That is unnecessary memmove and can be taken few milliseconds (about 500 msec > to 1000 msec). > If reduce this memmove, we can r

[U-Boot] [PATCH] bootm: Reduce the unnecessary memmove

2009-02-16 Thread Minkyu Kang
Although load address and image start address are same address, bootm command does memmove. That is unnecessary memmove and can be taken few milliseconds (about 500 msec to 1000 msec). If reduce this memmove, we can reduce the boot time. Please check this patch. Thank you. Minkyu Kang. Signed