On 05.12.2022 16:10, Jan Beulich wrote: > On 23.11.2022 16:45, Roger Pau Monne wrote: >> @@ -807,7 +822,21 @@ void __init efi_multiboot2(EFI_HANDLE ImageHandle, >> EFI_SYSTEM_TABLE *SystemTable >> >> if ( gop ) >> { >> - gop_mode = efi_find_gop_mode(gop, 0, 0, 0); >> + const char *opt = get_option(cmdline, "console="); >> + bool vga = false; >> + >> + if ( opt ) >> + { >> + const char *s = strstr(opt, "vga"); >> + >> + if ( s && s < strpbrk(opt, " \0")) >> + vga = true; >> + } > > Don't you also want to find a "vga=gfx-..." option, to avoid ...
Apologies - I should have looked at the title of the next patch before writing this. Jan