Re: [PATCH v4 1/2] fbcon: Silence fbcon logo on 'quiet' boots

2019-01-16 Thread Petr Mladek
On Fri 2019-01-11 15:04:32, Sergey Senozhatsky wrote: > On (01/10/19 14:03), Prarit Bhargava wrote: > > +++ b/drivers/video/fbdev/core/fbcon.c > > @@ -649,11 +649,14 @@ static void fbcon_prepare_logo(struct vc_data *vc, > > struct fb_info *info, > > kfree(save); > > } > > > > +

Re: [PATCH v4 1/2] fbcon: Silence fbcon logo on 'quiet' boots

2019-01-11 Thread Sergey Senozhatsky
On (01/10/19 14:03), Prarit Bhargava wrote: > +++ b/drivers/video/fbdev/core/fbcon.c > @@ -649,11 +649,14 @@ static void fbcon_prepare_logo(struct vc_data *vc, > struct fb_info *info, > kfree(save); > } > > + if (logo_shown == FBCON_LOGO_DONTSHOW) > + return;

[PATCH v4 1/2] fbcon: Silence fbcon logo on 'quiet' boots

2019-01-10 Thread Prarit Bhargava
On text-based systems the 'quiet' boot option will show printk levels higher than CONSOLE_LOGLEVEL_QUIET. The displaying of the Tux logo during boot can cause some consoles to lose display data and as a result confuse the end user. Do not display the Tux logo on systems that are in 'quiet' boot.