From f5ed7fcdc63f887615b5dc3d08990d94a95ccd43 Mon Sep 17 00:00:00 2001 From: srs5694 Date: Tue, 22 Jan 2013 23:54:13 -0500 Subject: [PATCH] Bug fix: Clear "Binary is whitelisted" message when loading MOK-signed drivers in Secure Boot mode. --- NEWS.txt | 3 +++ refind/main.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/NEWS.txt b/NEWS.txt index b3d016b..91267ca 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,6 +1,9 @@ 0.6.6 (?/??/2013): ------------------ +- Fixed bug that caused "Binary is whitelisted" message to persist on + screen after loading MOK-signed drivers in Secure Boot mode. + - Fixed bug that caused rEFInd to ignore the "icon" token in refind.conf manual boot stanzas. diff --git a/refind/main.c b/refind/main.c index cd13fe8..b9a8e18 100644 --- a/refind/main.c +++ b/refind/main.c @@ -2043,12 +2043,12 @@ efi_main (EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) refit_call4_wrapper(BS->SetWatchdogTimer, 0x0000, 0x0000, 0x0000, NULL); // further bootstrap (now with config available) - SetupScreen(); MokProtocol = SecureBootSetup(); // ScanVolumes(); LoadDrivers(); ScanForBootloaders(); ScanForTools(); + SetupScreen(); if (GlobalConfig.ScanDelay > 0) { BGColor.b = 255; -- 2.39.2