Re: [PATCH 4/5] multiboot2: parse console= option when setting GOP mode

2023-03-30 Thread Jan Beulich
On 30.03.2023 10:11, Roger Pau Monné wrote: > On Thu, Mar 30, 2023 at 08:24:20AM +0200, Jan Beulich wrote: >> On 29.03.2023 18:29, Roger Pau Monné wrote: >>> On Mon, Dec 05, 2022 at 04:10:28PM +0100, Jan Beulich wrote: On 23.11.2022 16:45, Roger Pau Monne wrote: > @@ -265,6 +266,15 @@ __ef

Re: [PATCH 4/5] multiboot2: parse console= option when setting GOP mode

2023-03-30 Thread Roger Pau Monné
On Thu, Mar 30, 2023 at 08:24:20AM +0200, Jan Beulich wrote: > On 29.03.2023 18:29, Roger Pau Monné wrote: > > On Mon, Dec 05, 2022 at 04:10:28PM +0100, Jan Beulich wrote: > >> On 23.11.2022 16:45, Roger Pau Monne wrote: > >>> @@ -265,6 +266,15 @@ __efi64_mb2_start: > >>> cmpl$MULTIBOO

Re: [PATCH 4/5] multiboot2: parse console= option when setting GOP mode

2023-03-29 Thread Jan Beulich
On 29.03.2023 18:29, Roger Pau Monné wrote: > On Mon, Dec 05, 2022 at 04:10:28PM +0100, Jan Beulich wrote: >> On 23.11.2022 16:45, Roger Pau Monne wrote: >>> @@ -265,6 +266,15 @@ __efi64_mb2_start: >>> cmpl$MULTIBOOT2_TAG_TYPE_END,MB2_tag_type(%rcx) >>> je .Lrun_bs >>>

Re: [PATCH 4/5] multiboot2: parse console= option when setting GOP mode

2023-03-29 Thread Roger Pau Monné
On Mon, Dec 05, 2022 at 04:10:28PM +0100, Jan Beulich wrote: > On 23.11.2022 16:45, Roger Pau Monne wrote: > > @@ -265,6 +266,15 @@ __efi64_mb2_start: > > cmpl$MULTIBOOT2_TAG_TYPE_END,MB2_tag_type(%rcx) > > je .Lrun_bs > > > > +/* > > + * Get command lin

Re: [PATCH 4/5] multiboot2: parse console= option when setting GOP mode

2022-12-13 Thread Daniel Kiper
Sorry for late reply... On Mon, Dec 05, 2022 at 04:10:28PM +0100, Jan Beulich wrote: > On 23.11.2022 16:45, Roger Pau Monne wrote: > > Only set the GOP mode if vga is selected in the console option, > > otherwise just fetch the information from the current mode in order to > > make it available to

Re: [PATCH 4/5] multiboot2: parse console= option when setting GOP mode

2022-12-05 Thread Jan Beulich
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); >> +co

Re: [PATCH 4/5] multiboot2: parse console= option when setting GOP mode

2022-12-05 Thread Jan Beulich
On 23.11.2022 16:45, Roger Pau Monne wrote: > Only set the GOP mode if vga is selected in the console option, > otherwise just fetch the information from the current mode in order to > make it available to dom0. > > Introduce support for passing the command line to the efi_multiboot2() > helper, a

[PATCH 4/5] multiboot2: parse console= option when setting GOP mode

2022-11-23 Thread Roger Pau Monne
Only set the GOP mode if vga is selected in the console option, otherwise just fetch the information from the current mode in order to make it available to dom0. Introduce support for passing the command line to the efi_multiboot2() helper, and parse the console= option if present. Signed-off-by: