]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/lib/bootm.c
mx35: Fix eSDHC clocks
[u-boot] / arch / arm / lib / bootm.c
index 999f201ef6ebd37d300b5eb84250fefdf172bce5..37476cc90d5cc6a9791bb146ec023a018bd901f3 100644 (file)
@@ -96,6 +96,9 @@ static void announce_and_cleanup(void)
 {
        printf("\nStarting kernel ...\n\n");
        bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
+#ifdef CONFIG_BOOTSTAGE_FDT
+       bootstage_fdt_add_report();
+#endif
 #ifdef CONFIG_BOOTSTAGE_REPORT
        bootstage_report();
 #endif
@@ -258,6 +261,9 @@ static int create_fdt(bootm_headers_t *images)
        fixup_memory_node(*of_flat_tree);
        fdt_fixup_ethernet(*of_flat_tree);
        fdt_initrd(*of_flat_tree, *initrd_start, *initrd_end, 1);
+#ifdef CONFIG_OF_BOARD_SETUP
+       ft_board_setup(*of_flat_tree, gd->bd);
+#endif
 
        return 0;
 }