Re: [PATCH v2 0/7] support >512b sector disks with old/buggy firmware

2020-05-27 Thread Mihai Moldovan
* On 5/24/20 2:25 PM, Mihai Moldovan wrote: > This is a patch series enabling successful boots on machines with > old/buggy system firmware that always assumes that hardware is using > 512-bytes sectors, but more modern disks (e.g., 4Kn disks). > [...] I know that these commits are missing a SOB l

[PATCH] json: Remove invalid typedef redefinition

2020-05-27 Thread Patrick Steinhardt
The C standard does not allow for typedef redefinitions, even if they map to the same underlying type. In order to avoid including the "jsmn.h" in "json.h" and thus exposing jsmn's internals, we have exactly such a forward-declaring typedef in "json.h". If enforcing the GNU99 C standard, clang may

[PATCH] add /u/s/fonts/truetype/dejavu to the DejaVu fonts search paths

2020-05-27 Thread Fabian Greffrath
Add /usr/share/fonts/truetype/dejavu to the DejaVu font search paths in configure.ac. This is the directory where the fonts-dejavu-core package in Debian installs its font files. Signed-off-by: Fabian Greffrath --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/

Tools for testing Grub / Go OpenPGP compatibility

2020-05-27 Thread Charles Duffy
Howdy, y'all -- In anticipation of trying to revive the OpenPGP compatibility patch created by Ignat Korchagin in 2016, I've assembled a simple test suite that can generate multiple builds of GRUB (different versions/patches/etc) and then test them with keys and signatures generated by multiple to

Re: Tools for testing Grub / Go OpenPGP compatibility

2020-05-27 Thread Daniel Axtens
Charles Duffy writes: > Howdy, y'all -- > > In anticipation of trying to revive the OpenPGP compatibility patch created > by Ignat Korchagin in 2016, I've assembled a simple test suite that can > generate multiple builds of GRUB (different versions/patches/etc) and then > test them with keys and

Re: [PATCH 1/6] grub-install: Fix inverted test for NLS enabled when copying locales

2020-05-27 Thread Javier Martinez Canillas
On 5/25/20 9:02 PM, Daniel Kiper wrote: > From: Martin Whitaker > > Commit 3d8439da8 (grub-install: Locale depends on nls) attempted to avoid > copying locale files to the target directory when NLS was disabled. > However the test is inverted, and it does the opposite. > > Signed-off-by: Martin