From f49381ccb6bc8a5733f1aa505e716eddae299986 Mon Sep 17 00:00:00 2001 From: Colin Percival Date: Sun, 20 Jun 2021 18:31:27 -0700 Subject: [PATCH] efi/loader: Call tslog_init This allows the EFI loader to start recording timestamps. --- stand/efi/loader/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stand/efi/loader/main.c b/stand/efi/loader/main.c index ae32960e404..d46f3f4161b 100644 --- a/stand/efi/loader/main.c +++ b/stand/efi/loader/main.c @@ -927,6 +927,8 @@ main(int argc, CHAR16 *argv[]) char buf[32]; bool uefi_boot_mgr; + tslog_init(); + archsw.arch_autoload = efi_autoload; archsw.arch_getdev = efi_getdev; archsw.arch_copyin = efi_copyin;