mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
MIPS: bootm: add bootstage reporting
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
This commit is contained in:
parent
5002d8cc54
commit
e13a50b34b
1 changed files with 6 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue