Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
remove secure boot enable requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
mq1n committed Jun 27, 2021
1 parent 5284ea8 commit 505fa9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,9 @@ int main(int, char* argv[])

std::cout << "\tSecure boot capable: " << std::to_string(ssbi.SecureBootCapable) << " Enabled: " << std::to_string(ssbi.SecureBootEnabled) << std::endl;

if (!ssbi.SecureBootCapable || !ssbi.SecureBootEnabled)
if (!ssbi.SecureBootCapable)
{
std::cerr << "Secure boot must be capable and enabled!" << std::endl;
std::cerr << "Secure boot must be capable!" << std::endl;
std::system("PAUSE");
return EXIT_FAILURE;
}
Expand Down

0 comments on commit 505fa9e

Please sign in to comment.