vboot: indicate verstage loading on console

There was no indication of verstage being loaded. Provide this
output so that one can follow the flow from console messages.

Change-Id: I67ae6bb334608fe10a4a12fe690498afaf6b8366
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/10195
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Aaron Durbin 2015-05-13 13:33:27 -05:00
parent aab13266b1
commit ce2c50d895
1 changed files with 2 additions and 0 deletions

View File

@ -94,6 +94,8 @@ static int vboot_loader_active(struct prog *prog)
.name = CONFIG_CBFS_PREFIX "/verstage", .name = CONFIG_CBFS_PREFIX "/verstage",
}; };
printk(BIOS_DEBUG, "VBOOT: Loading verstage.\n");
/* load verstage from RO */ /* load verstage from RO */
if (cbfs_load_prog_stage(CBFS_DEFAULT_MEDIA, &verstage)) if (cbfs_load_prog_stage(CBFS_DEFAULT_MEDIA, &verstage))
die("failed to load verstage"); die("failed to load verstage");