From: Daniel Schwierzeck Date: Wed, 14 Jan 2015 20:44:13 +0000 (+0100) Subject: MIPS: bootm: add bootstage reporting X-Git-Tag: v2015.04-rc1~63^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e13a50b34bdda624571b4bd49722f38327c02d6a;p=platform%2Fkernel%2Fu-boot.git MIPS: bootm: add bootstage reporting Signed-off-by: Daniel Schwierzeck --- diff --git a/arch/mips/lib/bootm.c b/arch/mips/lib/bootm.c index 426f68a..d9d8396 100644 --- a/arch/mips/lib/bootm.c +++ b/arch/mips/lib/bootm.c @@ -310,8 +310,12 @@ static void boot_jump_linux(bootm_headers_t *images) if (mips_boot_malta) linux_extra = gd->ram_size; - /* we assume that the kernel is in place */ - printf("\nStarting kernel ...\n\n"); +#ifdef CONFIG_BOOTSTAGE_FDT + bootstage_fdt_add_report(); +#endif +#ifdef CONFIG_BOOTSTAGE_REPORT + bootstage_report(); +#endif kernel(linux_argc, (ulong)linux_argv, (ulong)linux_env, linux_extra); }