All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] EFI: console: Do not set colorstate until the first text output
@ 2022-01-28 11:43 Hans de Goede
  2022-01-28 11:43 ` [PATCH 2/2] EFI: console: Do not set cursor " Hans de Goede
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Hans de Goede @ 2022-01-28 11:43 UTC (permalink / raw)
  To: grub-devel; +Cc: Robbie Harwood, Hans de Goede, Javier Martinez Canillas

GRUB_MOD_INIT(normal) does an unconditional:

grub_env_set ("color_normal", "light-gray/black");

which triggers a grub_term_setcolorstate() call. The original version
of the "efi/console: Do not set text-mode until we actually need it" patch:
https://lists.gnu.org/archive/html/grub-devel/2018-03/msg00125.html

Protected against this by caching the requested state in
grub_console_setcolorstate () and then only applying it when the first
text output actually happens. During refactoring to move the
grub_console_setcolorstate () up higher in the grub-core/term/efi/console.c
file the code to cache the color-state + bail early was accidentally
dropped.

Restore the cache the color-state + bail early behavior from the original.

Cc: Javier Martinez Canillas <javierm@redhat.com>
Fixes: 2d7c3abd871f ("efi/console: Do not set text-mode until we actually need it")
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 grub-core/term/efi/console.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/grub-core/term/efi/console.c b/grub-core/term/efi/console.c
index 2f1ae85ba..c44b2ac31 100644
--- a/grub-core/term/efi/console.c
+++ b/grub-core/term/efi/console.c
@@ -82,6 +82,16 @@ grub_console_setcolorstate (struct grub_term_output *term
 {
   grub_efi_simple_text_output_interface_t *o;
 
+  if (grub_efi_is_finished || text_mode != GRUB_TEXT_MODE_AVAILABLE)
+    {
+      /*
+       * Cache colorstate changes before the first text-output, this avoids
+       * "color_normal" environment writes causing a switch to textmode.
+       */
+      text_colorstate = state;
+      return;
+    }
+
   if (grub_efi_is_finished)
     return;
 
-- 
2.33.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 2/2] EFI: console: Do not set cursor until the first text output
  2022-01-28 11:43 [PATCH 1/2] EFI: console: Do not set colorstate until the first text output Hans de Goede
@ 2022-01-28 11:43 ` Hans de Goede
  2022-01-30 13:35   ` Javier Martinez Canillas
  2022-01-30 13:33 ` [PATCH 1/2] EFI: console: Do not set colorstate " Javier Martinez Canillas
  2022-03-04 10:30 ` Hans de Goede
  2 siblings, 1 reply; 10+ messages in thread
From: Hans de Goede @ 2022-01-28 11:43 UTC (permalink / raw)
  To: grub-devel; +Cc: Robbie Harwood, Hans de Goede

To allow flickerfree boot the EFI console code does not call
grub_efi_set_text_mode (1) until some text is actually output.

Depending on if the output text is because of an error loading
e.g. the .cfg file; or because of showing the menu the cursor needs
to be on or off when the first text is shown.

So far the cursor was hardcoded to being on, but this is causing
drawing artifacts + slow drawing of the menu as reported here:
https://bugzilla.redhat.com/show_bug.cgi?id=1946969

Handle the cursorstate in the same way as the colorstate to fix this,
when no text has been output yet, just cache the cursorstate and
then use the last set value when the first text is output.

Fixes: 2d7c3abd871f ("efi/console: Do not set text-mode until we actually need it")
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 grub-core/term/efi/console.c | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/grub-core/term/efi/console.c b/grub-core/term/efi/console.c
index c44b2ac31..a3622e4fe 100644
--- a/grub-core/term/efi/console.c
+++ b/grub-core/term/efi/console.c
@@ -31,7 +31,15 @@ typedef enum {
 }
 grub_text_mode;
 
+typedef enum {
+    GRUB_CURSOR_MODE_UNDEFINED = -1,
+    GRUB_CURSOR_MODE_OFF = 0,
+    GRUB_CURSUR_MODE_ON
+}
+grub_cursor_mode;
+
 static grub_text_mode text_mode = GRUB_TEXT_MODE_UNDEFINED;
+static grub_cursor_mode cursor_mode = GRUB_CURSOR_MODE_UNDEFINED;
 static grub_term_color_state text_colorstate = GRUB_TERM_COLOR_UNDEFINED;
 
 static grub_uint32_t
@@ -119,8 +127,12 @@ grub_console_setcursor (struct grub_term_output *term __attribute__ ((unused)),
 {
   grub_efi_simple_text_output_interface_t *o;
 
-  if (grub_efi_is_finished)
-    return;
+  if (grub_efi_is_finished || text_mode != GRUB_TEXT_MODE_AVAILABLE)
+    {
+      /* Cache cursor changes before the first text-output */
+      cursor_mode = on;
+      return;
+    }
 
   o = grub_efi_system_table->con_out;
   efi_call_2 (o->enable_cursor, o, on);
@@ -143,7 +155,8 @@ grub_prepare_for_text_output (struct grub_term_output *term)
       return GRUB_ERR_BAD_DEVICE;
     }
 
-  grub_console_setcursor (term, 1);
+  if (cursor_mode != GRUB_CURSOR_MODE_UNDEFINED)
+    grub_console_setcursor (term, cursor_mode);
   if (text_colorstate != GRUB_TERM_COLOR_UNDEFINED)
     grub_console_setcolorstate (term, text_colorstate);
   text_mode = GRUB_TEXT_MODE_AVAILABLE;
-- 
2.33.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] EFI: console: Do not set colorstate until the first text output
  2022-01-28 11:43 [PATCH 1/2] EFI: console: Do not set colorstate until the first text output Hans de Goede
  2022-01-28 11:43 ` [PATCH 2/2] EFI: console: Do not set cursor " Hans de Goede
@ 2022-01-30 13:33 ` Javier Martinez Canillas
  2022-01-31 18:44   ` Robbie Harwood
  2022-03-04 10:30 ` Hans de Goede
  2 siblings, 1 reply; 10+ messages in thread
From: Javier Martinez Canillas @ 2022-01-30 13:33 UTC (permalink / raw)
  To: Hans de Goede, grub-devel; +Cc: Robbie Harwood

Hello Hans,

Thanks for the patch.

On 1/28/22 12:43, Hans de Goede wrote:
> GRUB_MOD_INIT(normal) does an unconditional:
> 
> grub_env_set ("color_normal", "light-gray/black");
> 
> which triggers a grub_term_setcolorstate() call. The original version
> of the "efi/console: Do not set text-mode until we actually need it" patch:
> https://lists.gnu.org/archive/html/grub-devel/2018-03/msg00125.html
> 
> Protected against this by caching the requested state in
> grub_console_setcolorstate () and then only applying it when the first
> text output actually happens. During refactoring to move the
> grub_console_setcolorstate () up higher in the grub-core/term/efi/console.c
> file the code to cache the color-state + bail early was accidentally
> dropped.
> 
> Restore the cache the color-state + bail early behavior from the original.
> 
> Cc: Javier Martinez Canillas <javierm@redhat.com>
> Fixes: 2d7c3abd871f ("efi/console: Do not set text-mode until we actually need it")
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> ---
>  grub-core/term/efi/console.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/grub-core/term/efi/console.c b/grub-core/term/efi/console.c
> index 2f1ae85ba..c44b2ac31 100644
> --- a/grub-core/term/efi/console.c
> +++ b/grub-core/term/efi/console.c
> @@ -82,6 +82,16 @@ grub_console_setcolorstate (struct grub_term_output *term
>  {
>    grub_efi_simple_text_output_interface_t *o;
>  
> +  if (grub_efi_is_finished || text_mode != GRUB_TEXT_MODE_AVAILABLE)
> +    {
> +      /*
> +       * Cache colorstate changes before the first text-output, this avoids
> +       * "color_normal" environment writes causing a switch to textmode.
> +       */
> +      text_colorstate = state;
> +      return;
> +    }
> +
>    if (grub_efi_is_finished)
>      return;
>

Indeed, sorry for messing this when addressing the concerns raised by
Daniel in your original patch. The fix looks good to me.

Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>

Best regards,
-- 
Javier Martinez Canillas
Linux Engineering
Red Hat



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/2] EFI: console: Do not set cursor until the first text output
  2022-01-28 11:43 ` [PATCH 2/2] EFI: console: Do not set cursor " Hans de Goede
@ 2022-01-30 13:35   ` Javier Martinez Canillas
  2022-01-31 18:44     ` Robbie Harwood
  0 siblings, 1 reply; 10+ messages in thread
From: Javier Martinez Canillas @ 2022-01-30 13:35 UTC (permalink / raw)
  To: The development of GNU GRUB, Hans de Goede; +Cc: Robbie Harwood

On 1/28/22 12:43, Hans de Goede wrote:
> To allow flickerfree boot the EFI console code does not call
> grub_efi_set_text_mode (1) until some text is actually output.
> 
> Depending on if the output text is because of an error loading
> e.g. the .cfg file; or because of showing the menu the cursor needs
> to be on or off when the first text is shown.
> 
> So far the cursor was hardcoded to being on, but this is causing
> drawing artifacts + slow drawing of the menu as reported here:
> https://bugzilla.redhat.com/show_bug.cgi?id=1946969
> 
> Handle the cursorstate in the same way as the colorstate to fix this,
> when no text has been output yet, just cache the cursorstate and
> then use the last set value when the first text is output.
> 
> Fixes: 2d7c3abd871f ("efi/console: Do not set text-mode until we actually need it")
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> ---

Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>

Best regards,
-- 
Javier Martinez Canillas
Linux Engineering
Red Hat



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/2] EFI: console: Do not set cursor until the first text output
  2022-01-30 13:35   ` Javier Martinez Canillas
@ 2022-01-31 18:44     ` Robbie Harwood
  0 siblings, 0 replies; 10+ messages in thread
From: Robbie Harwood @ 2022-01-31 18:44 UTC (permalink / raw)
  To: Javier Martinez Canillas, The development of GNU GRUB, Hans de Goede

[-- Attachment #1: Type: text/plain, Size: 1129 bytes --]

Javier Martinez Canillas <javierm@redhat.com> writes:

> On 1/28/22 12:43, Hans de Goede wrote:
>> To allow flickerfree boot the EFI console code does not call
>> grub_efi_set_text_mode (1) until some text is actually output.
>> 
>> Depending on if the output text is because of an error loading
>> e.g. the .cfg file; or because of showing the menu the cursor needs
>> to be on or off when the first text is shown.
>> 
>> So far the cursor was hardcoded to being on, but this is causing
>> drawing artifacts + slow drawing of the menu as reported here:
>> https://bugzilla.redhat.com/show_bug.cgi?id=1946969
>> 
>> Handle the cursorstate in the same way as the colorstate to fix this,
>> when no text has been output yet, just cache the cursorstate and
>> then use the last set value when the first text is output.
>> 
>> Fixes: 2d7c3abd871f ("efi/console: Do not set text-mode until we actually need it")
>> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
>> ---
>
> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>

Reviewed-by: Robbie Harwood <rharwood@redhat.com>

Be well,
--Robbie

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] EFI: console: Do not set colorstate until the first text output
  2022-01-30 13:33 ` [PATCH 1/2] EFI: console: Do not set colorstate " Javier Martinez Canillas
@ 2022-01-31 18:44   ` Robbie Harwood
  0 siblings, 0 replies; 10+ messages in thread
From: Robbie Harwood @ 2022-01-31 18:44 UTC (permalink / raw)
  To: Javier Martinez Canillas, Hans de Goede, grub-devel

[-- Attachment #1: Type: text/plain, Size: 2257 bytes --]

Javier Martinez Canillas <javierm@redhat.com> writes:

> Hello Hans,
>
> Thanks for the patch.
>
> On 1/28/22 12:43, Hans de Goede wrote:
>> GRUB_MOD_INIT(normal) does an unconditional:
>> 
>> grub_env_set ("color_normal", "light-gray/black");
>> 
>> which triggers a grub_term_setcolorstate() call. The original version
>> of the "efi/console: Do not set text-mode until we actually need it" patch:
>> https://lists.gnu.org/archive/html/grub-devel/2018-03/msg00125.html
>> 
>> Protected against this by caching the requested state in
>> grub_console_setcolorstate () and then only applying it when the first
>> text output actually happens. During refactoring to move the
>> grub_console_setcolorstate () up higher in the grub-core/term/efi/console.c
>> file the code to cache the color-state + bail early was accidentally
>> dropped.
>> 
>> Restore the cache the color-state + bail early behavior from the original.
>> 
>> Cc: Javier Martinez Canillas <javierm@redhat.com>
>> Fixes: 2d7c3abd871f ("efi/console: Do not set text-mode until we actually need it")
>> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
>> ---
>>  grub-core/term/efi/console.c | 10 ++++++++++
>>  1 file changed, 10 insertions(+)
>> 
>> diff --git a/grub-core/term/efi/console.c b/grub-core/term/efi/console.c
>> index 2f1ae85ba..c44b2ac31 100644
>> --- a/grub-core/term/efi/console.c
>> +++ b/grub-core/term/efi/console.c
>> @@ -82,6 +82,16 @@ grub_console_setcolorstate (struct grub_term_output *term
>>  {
>>    grub_efi_simple_text_output_interface_t *o;
>>  
>> +  if (grub_efi_is_finished || text_mode != GRUB_TEXT_MODE_AVAILABLE)
>> +    {
>> +      /*
>> +       * Cache colorstate changes before the first text-output, this avoids
>> +       * "color_normal" environment writes causing a switch to textmode.
>> +       */
>> +      text_colorstate = state;
>> +      return;
>> +    }
>> +
>>    if (grub_efi_is_finished)
>>      return;
>>
>
> Indeed, sorry for messing this when addressing the concerns raised by
> Daniel in your original patch. The fix looks good to me.
>
> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>

Reviewed-by: Robbie Harwood <rharwood@redhat.com>

Be well,
--Robbie

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] EFI: console: Do not set colorstate until the first text output
  2022-01-28 11:43 [PATCH 1/2] EFI: console: Do not set colorstate until the first text output Hans de Goede
  2022-01-28 11:43 ` [PATCH 2/2] EFI: console: Do not set cursor " Hans de Goede
  2022-01-30 13:33 ` [PATCH 1/2] EFI: console: Do not set colorstate " Javier Martinez Canillas
@ 2022-03-04 10:30 ` Hans de Goede
  2022-03-04 20:08   ` Daniel Kiper
                     ` (2 more replies)
  2 siblings, 3 replies; 10+ messages in thread
From: Hans de Goede @ 2022-03-04 10:30 UTC (permalink / raw)
  To: Daniel Kiper; +Cc: Robbie Harwood, Javier Martinez Canillas, grub-devel

Hi Daniel,

On 1/28/22 12:43, Hans de Goede wrote:
> GRUB_MOD_INIT(normal) does an unconditional:
> 
> grub_env_set ("color_normal", "light-gray/black");
> 
> which triggers a grub_term_setcolorstate() call. The original version
> of the "efi/console: Do not set text-mode until we actually need it" patch:
> https://lists.gnu.org/archive/html/grub-devel/2018-03/msg00125.html
> 
> Protected against this by caching the requested state in
> grub_console_setcolorstate () and then only applying it when the first
> text output actually happens. During refactoring to move the
> grub_console_setcolorstate () up higher in the grub-core/term/efi/console.c
> file the code to cache the color-state + bail early was accidentally
> dropped.
> 
> Restore the cache the color-state + bail early behavior from the original.
> 
> Cc: Javier Martinez Canillas <javierm@redhat.com>
> Fixes: 2d7c3abd871f ("efi/console: Do not set text-mode until we actually need it")
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>

What is the status of this series? It has been well over a month and both
patches have received 2 Reviewed-by-s and no other comments:

Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Reviewed-by: Robbie Harwood <rharwood@redhat.com>

Regards,

Hans



> ---
>  grub-core/term/efi/console.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/grub-core/term/efi/console.c b/grub-core/term/efi/console.c
> index 2f1ae85ba..c44b2ac31 100644
> --- a/grub-core/term/efi/console.c
> +++ b/grub-core/term/efi/console.c
> @@ -82,6 +82,16 @@ grub_console_setcolorstate (struct grub_term_output *term
>  {
>    grub_efi_simple_text_output_interface_t *o;
>  
> +  if (grub_efi_is_finished || text_mode != GRUB_TEXT_MODE_AVAILABLE)
> +    {
> +      /*
> +       * Cache colorstate changes before the first text-output, this avoids
> +       * "color_normal" environment writes causing a switch to textmode.
> +       */
> +      text_colorstate = state;
> +      return;
> +    }
> +
>    if (grub_efi_is_finished)
>      return;
>  



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] EFI: console: Do not set colorstate until the first text output
  2022-03-04 10:30 ` Hans de Goede
@ 2022-03-04 20:08   ` Daniel Kiper
  2022-03-17 21:42   ` Daniel Kiper
  2022-03-22 15:48   ` Daniel Kiper
  2 siblings, 0 replies; 10+ messages in thread
From: Daniel Kiper @ 2022-03-04 20:08 UTC (permalink / raw)
  To: Hans de Goede; +Cc: Robbie Harwood, Javier Martinez Canillas, grub-devel

On Fri, Mar 04, 2022 at 11:30:13AM +0100, Hans de Goede wrote:
> Hi Daniel,
>
> On 1/28/22 12:43, Hans de Goede wrote:
> > GRUB_MOD_INIT(normal) does an unconditional:
> >
> > grub_env_set ("color_normal", "light-gray/black");
> >
> > which triggers a grub_term_setcolorstate() call. The original version
> > of the "efi/console: Do not set text-mode until we actually need it" patch:
> > https://lists.gnu.org/archive/html/grub-devel/2018-03/msg00125.html
> >
> > Protected against this by caching the requested state in
> > grub_console_setcolorstate () and then only applying it when the first
> > text output actually happens. During refactoring to move the
> > grub_console_setcolorstate () up higher in the grub-core/term/efi/console.c
> > file the code to cache the color-state + bail early was accidentally
> > dropped.
> >
> > Restore the cache the color-state + bail early behavior from the original.
> >
> > Cc: Javier Martinez Canillas <javierm@redhat.com>
> > Fixes: 2d7c3abd871f ("efi/console: Do not set text-mode until we actually need it")
> > Signed-off-by: Hans de Goede <hdegoede@redhat.com>
>
> What is the status of this series? It has been well over a month and both
> patches have received 2 Reviewed-by-s and no other comments:
>
> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
> Reviewed-by: Robbie Harwood <rharwood@redhat.com>

I will take a look at them in a week or two. Sorry for delay...

Daniel


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] EFI: console: Do not set colorstate until the first text output
  2022-03-04 10:30 ` Hans de Goede
  2022-03-04 20:08   ` Daniel Kiper
@ 2022-03-17 21:42   ` Daniel Kiper
  2022-03-22 15:48   ` Daniel Kiper
  2 siblings, 0 replies; 10+ messages in thread
From: Daniel Kiper @ 2022-03-17 21:42 UTC (permalink / raw)
  To: Hans de Goede
  Cc: Daniel Kiper, Robbie Harwood, Javier Martinez Canillas, grub-devel

On Fri, Mar 04, 2022 at 11:30:13AM +0100, Hans de Goede wrote:
> Hi Daniel,
>
> On 1/28/22 12:43, Hans de Goede wrote:
> > GRUB_MOD_INIT(normal) does an unconditional:
> >
> > grub_env_set ("color_normal", "light-gray/black");
> >
> > which triggers a grub_term_setcolorstate() call. The original version
> > of the "efi/console: Do not set text-mode until we actually need it" patch:
> > https://lists.gnu.org/archive/html/grub-devel/2018-03/msg00125.html
> >
> > Protected against this by caching the requested state in
> > grub_console_setcolorstate () and then only applying it when the first
> > text output actually happens. During refactoring to move the
> > grub_console_setcolorstate () up higher in the grub-core/term/efi/console.c
> > file the code to cache the color-state + bail early was accidentally
> > dropped.
> >
> > Restore the cache the color-state + bail early behavior from the original.
> >
> > Cc: Javier Martinez Canillas <javierm@redhat.com>
> > Fixes: 2d7c3abd871f ("efi/console: Do not set text-mode until we actually need it")
> > Signed-off-by: Hans de Goede <hdegoede@redhat.com>
>
> What is the status of this series? It has been well over a month and both
> patches have received 2 Reviewed-by-s and no other comments:
>
> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
> Reviewed-by: Robbie Harwood <rharwood@redhat.com>

Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>

Daniel


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] EFI: console: Do not set colorstate until the first text output
  2022-03-04 10:30 ` Hans de Goede
  2022-03-04 20:08   ` Daniel Kiper
  2022-03-17 21:42   ` Daniel Kiper
@ 2022-03-22 15:48   ` Daniel Kiper
  2 siblings, 0 replies; 10+ messages in thread
From: Daniel Kiper @ 2022-03-22 15:48 UTC (permalink / raw)
  To: Hans de Goede
  Cc: Daniel Kiper, Robbie Harwood, Javier Martinez Canillas, grub-devel

On Fri, Mar 04, 2022 at 11:30:13AM +0100, Hans de Goede wrote:
> Hi Daniel,
>
> On 1/28/22 12:43, Hans de Goede wrote:
> > GRUB_MOD_INIT(normal) does an unconditional:
> >
> > grub_env_set ("color_normal", "light-gray/black");
> >
> > which triggers a grub_term_setcolorstate() call. The original version
> > of the "efi/console: Do not set text-mode until we actually need it" patch:
> > https://lists.gnu.org/archive/html/grub-devel/2018-03/msg00125.html
> >
> > Protected against this by caching the requested state in
> > grub_console_setcolorstate () and then only applying it when the first
> > text output actually happens. During refactoring to move the
> > grub_console_setcolorstate () up higher in the grub-core/term/efi/console.c
> > file the code to cache the color-state + bail early was accidentally
> > dropped.
> >
> > Restore the cache the color-state + bail early behavior from the original.
> >
> > Cc: Javier Martinez Canillas <javierm@redhat.com>
> > Fixes: 2d7c3abd871f ("efi/console: Do not set text-mode until we actually need it")
> > Signed-off-by: Hans de Goede <hdegoede@redhat.com>
>
> What is the status of this series? It has been well over a month and both
> patches have received 2 Reviewed-by-s and no other comments:
>
> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
> Reviewed-by: Robbie Harwood <rharwood@redhat.com>

Argh... By mistake I forgot to add Javier's and Robbie's RB. Sorry about that...

Daniel


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2022-03-22 15:49 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-28 11:43 [PATCH 1/2] EFI: console: Do not set colorstate until the first text output Hans de Goede
2022-01-28 11:43 ` [PATCH 2/2] EFI: console: Do not set cursor " Hans de Goede
2022-01-30 13:35   ` Javier Martinez Canillas
2022-01-31 18:44     ` Robbie Harwood
2022-01-30 13:33 ` [PATCH 1/2] EFI: console: Do not set colorstate " Javier Martinez Canillas
2022-01-31 18:44   ` Robbie Harwood
2022-03-04 10:30 ` Hans de Goede
2022-03-04 20:08   ` Daniel Kiper
2022-03-17 21:42   ` Daniel Kiper
2022-03-22 15:48   ` Daniel Kiper

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.