Re: [PATCH v2 2/2] docs: Document efitextmode command

2022-07-08 Thread Glenn Washburn
On Tue, 5 Jul 2022 16:01:04 +0200 Daniel Kiper wrote: > On Fri, May 13, 2022 at 12:54:12PM -0500, Glenn Washburn wrote: > > Signed-off-by: Glenn Washburn > > I think this patch should be merged with patch #1. > > > --- > > docs/grub.texi | 26 ++ > > 1 file changed,

Re: [PATCH] configure.ac: warn if stack-protector not allowed

2022-07-08 Thread Mike Gilbert
On Fri, Jun 24, 2022 at 2:12 PM Nicholas Vinson wrote: > > On 6/24/22 12:28, Daniel Kiper wrote: > > Adding Chris... > > > > On Tue, Jun 14, 2022 at 06:19:00PM -0400, Nicholas Vinson wrote: > >> Previous version of configure.ac would error out when > >> --enable-stack-protector was given and a

[PATCH v6 0/2] Have LUKS2 cryptomounts be useable with grub-probe

2022-07-08 Thread Josselin Poiret via Grub-devel
Hello Daniel, Thanks for the review. The following updated patches should contain all the changes you asked for. >Please add your Signed-off-by here. Same applies to first patch too. Done. > Please format comments, here and below, properly [1]. Sorry about that, I missed the empty first line.

[PATCH v6 2/2] devmapper/getroot: Set up cheated LUKS2 cryptodisk mount from DM parameters

2022-07-08 Thread Josselin Poiret via Grub-devel
This lets a LUKS2 cryptodisk have its cipher and hash filled out, otherwise they wouldn't be initialized if cheat mounted. Signed-off-by: Josselin Poiret --- grub-core/osdep/devmapper/getroot.c | 107 +++- 1 file changed, 106 insertions(+), 1 deletion(-) diff --git

[PATCH v6 1/2] devmapper/getroot: Have devmapper recognize LUKS2

2022-07-08 Thread Josselin Poiret via Grub-devel
Changes UUID comparisons so that LUKS1 and LUKS2 are both recognized as being LUKS cryptodisks. Signed-off-by: Josselin Poiret --- grub-core/osdep/devmapper/getroot.c | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/grub-core/osdep/devmapper/getroot.c