From: Minkyu Kang Date: Wed, 18 Feb 2009 00:05:52 +0000 (+0900) Subject: bootm: Reduce the unnecessary memmove X-Git-Tag: v2009.03-rc1~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fca0cecff73db99d99ad094cca7980472b8a11b5;p=kernel%2Fu-boot.git bootm: Reduce the unnecessary memmove 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 --- diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 07f6c6b..6fdeef4 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -340,8 +340,10 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress) } else { printf (" Loading %s ... ", type_name); - memmove_wd ((void *)load, - (void *)image_start, image_len, CHUNKSZ); + if (load != image_start) { + memmove_wd ((void *)load, + (void *)image_start, image_len, CHUNKSZ); + } } *load_end = load + image_len; puts("OK\n");