diff --git a/src/security/vboot/vboot_loader.c b/src/security/vboot/vboot_loader.c index 9ca625938f..482c6fb7c5 100644 --- a/src/security/vboot/vboot_loader.c +++ b/src/security/vboot/vboot_loader.c @@ -10,6 +10,7 @@ #include #include #include +#include /* Ensure vboot configuration is valid: */ _Static_assert(CONFIG(VBOOT_STARTS_IN_BOOTBLOCK) + @@ -51,8 +52,10 @@ void vboot_run_logic(void) printk(BIOS_DEBUG, "VBOOT: Loading verstage.\n"); + timestamp_add_now(TS_START_COPYVER); if (cbfs_prog_stage_load(&verstage)) die("failed to load verstage"); + timestamp_add_now(TS_END_COPYVER); /* verify and select a slot */ prog_run(&verstage);