]> git.sur5r.net Git - u-boot/blobdiff - lib_ppc/bootm.c
[new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
[u-boot] / lib_ppc / bootm.c
index 4d8ef355260d761762e190e65a50f3fe291e0565..86e104cdcc34240e87f0b89dc528336d4528da49 100644 (file)
@@ -150,8 +150,12 @@ do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
                ep = image_get_ep (images->legacy_hdr_os);
 #if defined(CONFIG_FIT)
        } else if (images->fit_uname_os) {
-               fit_unsupported_reset ("PPC linux bootm");
-               goto error;
+               ret = fit_image_get_entry (images->fit_hdr_os,
+                               images->fit_noffset_os, &ep);
+               if (ret) {
+                       puts ("Can't get entry point property!\n");
+                       goto error;
+               }
 #endif
        } else {
                puts ("Could not find kernel entry point!\n");