loader.efi: update console after gfx mode change

The gfx mode change should be coordinated with console setup.
This commit is contained in:
Toomas Soome 2020-06-14 10:13:40 +00:00
parent 4471043177
commit 7f3d93b55b

View File

@ -586,6 +586,7 @@ gop_autoresize(EFI_GRAPHICS_OUTPUT *gop)
mode, EFI_ERROR_CODE(status));
return (CMD_ERROR);
}
(void) efi_cons_update_mode();
}
return (CMD_OK);
}
@ -610,6 +611,7 @@ text_autoresize()
}
if (max_dim > 0)
conout->SetMode(conout, best_mode);
(void) efi_cons_update_mode();
return (CMD_OK);
}
@ -697,6 +699,7 @@ command_gop(int argc, char *argv[])
argv[0], mode, EFI_ERROR_CODE(status));
return (CMD_ERROR);
}
(void) efi_cons_update_mode();
} else if (!strcmp(argv[1], "get")) {
if (argc != 2)
goto usage;