|
@@ -340,8 +340,10 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
|
|
} else {
|
|
} else {
|
|
printf (" Loading %s ... ", type_name);
|
|
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;
|
|
*load_end = load + image_len;
|
|
puts("OK\n");
|
|
puts("OK\n");
|