summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2013-02-17 22:04:08 +0100
committerKay Sievers <kay@vrfy.org>2013-02-17 22:04:08 +0100
commit2b94b5b62910ed9d01181c86a2c55bdec5297d73 (patch)
tree7ee0426504ca0aa844e0fc594ef28900c29963ac
parentb35dcf35abf2bee995060fb6ee6bb0eddd177a01 (diff)
actually use minutes not seconds for EFI watchdog
-rw-r--r--src/efi/gummiboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/efi/gummiboot.c b/src/efi/gummiboot.c
index cfe8410..4e00e26 100644
--- a/src/efi/gummiboot.c
+++ b/src/efi/gummiboot.c
@@ -1877,7 +1877,7 @@ EFI_STATUS EFIAPI efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
/* export the selected boot entry to the system */
efivar_set(L"LoaderEntrySelected", entry->file, FALSE);
- uefi_call_wrapper(BS->SetWatchdogTimer, 4, 5, 0x10000, 0, NULL);
+ uefi_call_wrapper(BS->SetWatchdogTimer, 4, 5 * 60, 0x10000, 0, NULL);
err = image_start(image, &config, entry);
if (err == EFI_ACCESS_DENIED || err == EFI_SECURITY_VIOLATION) {