Skip to content

Commit

Permalink
SecureBootConfigImpl.c: Try checking key in two places
Browse files Browse the repository at this point in the history
Signed-off-by: Filip Gołaś <[email protected]>
  • Loading branch information
philipandag committed Aug 6, 2024
1 parent a348d33 commit d22b913
Showing 1 changed file with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4701,11 +4701,11 @@ SecureBootCallback (
CreatePopUp (
EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE,
&Key,
L"PK INFO",
L"PK INFO form open",
L"PK INFO 2",
NULL
);
HiiSetString (PrivateData->HiiHandle, STRING_TOKEN (STR_PK_INFO), L"TEST CHANGING STRING", NULL);
HiiSetString (PrivateData->HiiHandle, STRING_TOKEN (STR_PK_INFO), L"PK INFO form open", NULL);
}
}

Expand Down Expand Up @@ -4758,7 +4758,17 @@ SecureBootCallback (
}

break;

case KEY_PK_INFO:
{
CreatePopUp (
EFI_LIGHTGRAY | EFI_BACKGROUND_BLUE,
&Key,
L"PK INFO form changing",
L"PK INFO 2",
NULL
);
HiiSetString (PrivateData->HiiHandle, STRING_TOKEN (STR_PK_INFO), L"PK INFO changing", NULL);
}
case KEY_SECURE_BOOT_KEK_OPTION:
case KEY_SECURE_BOOT_DB_OPTION:
case KEY_SECURE_BOOT_DBX_OPTION:
Expand Down

0 comments on commit d22b913

Please sign in to comment.