Re: [PATCH] mkimage: fix build regression in grub_mkimage_load_image

2018-03-06 Thread Peter Jones
On Tue, Mar 06, 2018 at 01:38:58PM -0800, Eric Snowberg wrote: > The grub_mkimage_load_image function (commit 7542af6, mkimage: refactor a > bunch > of section data into a struct.) introduces a build regression on SPARC: > > cc1: warnings being treated as errors > In file included from util/g

[PATCH] mkimage: fix build regression in grub_mkimage_load_image

2018-03-06 Thread Eric Snowberg
The grub_mkimage_load_image function (commit 7542af6, mkimage: refactor a bunch of section data into a struct.) introduces a build regression on SPARC: cc1: warnings being treated as errors In file included from util/grub-mkimage32.c:23: util/grub-mkimagexx.c: In function 'grub_mkimage_load_

Support for detached LUKS header

2018-03-06 Thread Yannik Sembritzki
Hello, unfortunately, the patches for cryptomount     0001-Cryptomount-support-LUKS-detached-header.patch     0002-Cryptomount-support-key-files.patch     0003-Cryptomount-luks-allow-multiple-passphrase-attempts.patch     0004-Cryptomount-support-plain-dm-crypt.patch     0005-Cryptomount-support-

[PATCH v2] grub-install: locale depends on nls

2018-03-06 Thread Olaf Hering
With --disable-nls no locales exist. Avoid runtime error by moving code that copies locales into its own function. Return early in case nls was disabled. That way the compiler will throw away unreachable code, no need to put preprocessor conditionals everywhere to avoid warnings about unused code.