Re: [PATCH] Add Fedora location of DejaVu SANS font

2021-12-06 Thread Nicholas Vinson
On 12/6/21 17:25, Robbie Harwood wrote: From: fluteze In Fedora 35, and possibly earlier, grub would fail to configure with a complaint about DejaVu being "not found" even though it was installed. The DejaVu sans font search path is updated to reflect the distribution's current install path. S

[PATCH] Add Fedora location of DejaVu SANS font

2021-12-06 Thread Robbie Harwood
From: fluteze In Fedora 35, and possibly earlier, grub would fail to configure with a complaint about DejaVu being "not found" even though it was installed. The DejaVu sans font search path is updated to reflect the distribution's current install path. Signed-off-by: Erik Edwards [rharw...@redh

Re: [PATCH v3] multiboot2: Implement the new module load and preferences tag

2021-12-06 Thread Łukasz Hawryłko
Hi Daniel On Thu, 2021-09-09 at 18:40 +0200, Daniel Kiper wrote: > > --- a/grub-core/loader/multiboot.c  Thu Jul 15 17:35:28 2021 > > +0200 > > +++ b/grub-core/loader/multiboot.c  Mon Aug 16 12:02:52 2021 > > +0200 > > @@ -363,12 +363,15 @@ > > int argc, char *argv[]) > >

Re: [PATCH v2] misc: Allow selective disabling of debug facility names

2021-12-06 Thread Michael Schierl
Hello Glenn, Comments below, note that I did not test the patch so maybe I am missing something. Am 06.12.2021 um 18:03 schrieb Glenn Washburn: grub_debug_enabled (const char * condition) { - const char *debug; + const char *debug, *found; + grub_size_t clen; + int ret = 0; debu

[PATCH v2] misc: Allow selective disabling of debug facility names

2021-12-06 Thread Glenn Washburn
Sometimes you know only know which debug logging facility names you want to turn off, not necessarily all the ones you want enabled. This patch allows the debug string to contain facility names in the $debug variable which are prefixed with a "-" to disable debug log messages for that conditional.