]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
bootm: Reduce the unnecessary memmove
authorMinkyu Kang <mk7.kang@samsung.com>
Wed, 18 Feb 2009 00:05:52 +0000 (09:05 +0900)
committerWolfgang Denk <wd@denx.de>
Sat, 21 Feb 2009 22:00:20 +0000 (23:00 +0100)
commitfca0cecff73db99d99ad094cca7980472b8a11b5
tree823c444758a43895eab992b307d638f11db32080
parent670cbde8da83690fed1064c3358f54ae1d693ed2
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 <mk7.kang@samsung.com>
common/cmd_bootm.c