[USETUP] Display the "check the FS" section as a MUI page (#3474)

This commit is contained in:
George Bișoc 2021-02-22 16:48:03 +01:00 committed by GitHub
parent b00ecdcab9
commit 950f78635a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 1016 additions and 62 deletions

View file

@ -3157,6 +3157,8 @@ CheckFileSystemPage(PINPUT_RECORD Ir)
PPARTENTRY PartEntry;
CHAR Buffer[MAX_PATH];
MUIDisplayPage(CHECK_FILE_SYSTEM_PAGE);
if (PartitionList == NULL)
{
/* FIXME: show an error dialog */
@ -3170,9 +3172,6 @@ CheckFileSystemPage(PINPUT_RECORD Ir)
ASSERT(PartEntry->IsPartitioned && PartEntry->PartitionNumber != 0);
CONSOLE_SetTextXY(6, 8, MUIGetString(STRING_CHECKINGPART));
CONSOLE_SetStatusText(MUIGetString(STRING_PLEASEWAIT));
DPRINT1("CheckFileSystemPage -- PartitionType: 0x%02X ; FileSystem: %S\n",
PartEntry->PartitionType, (*PartEntry->FileSystem ? PartEntry->FileSystem : L"n/a"));