]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - common/cmd_bootm.c
applied patches from Freescale and Ka-Ro
[karo-tx-uboot.git] / common / cmd_bootm.c
index 86c81220d2cd88030c8d6c0e2050b3ddf06d6d49..f43b472a4c5f4fe68c72c2acb21aaaee9eea460f 100644 (file)
@@ -713,6 +713,13 @@ static image_header_t *image_get_kernel (ulong img_addr, int verify)
                return NULL;
        }
 
+#if defined(CONFIG_MX51_BBG) || defined(CONFIG_MX51_3DS)
+       if (image_get_load(hdr) < 0x90000000)
+               image_set_load(hdr, image_get_load(hdr)+0x20000000);
+       if (image_get_ep(hdr) < 0x90000000)
+               image_set_ep(hdr, image_get_ep(hdr)+0x20000000);
+#endif
+
        show_boot_progress (3);
        image_print_contents (hdr);