Re: ZSTD support for SquashFS module ?

2020-04-22 Thread Daniel Kiper
Hi Marc, On Sun, Apr 19, 2020 at 10:08:19PM +0200, Marc Beninca wrote: > Hello, > > I recently migrated from xz to zstd for my squashfs files, > and from GRUB version 2.02 to version 2.04, > which was the occasion for me to notice that : > – the zstd module has been implemented >   – the btrfs mod

Re: GRUB 2.06 release

2020-04-22 Thread Daniel Kiper
On Mon, Mar 16, 2020 at 05:41:29PM +0100, Daniel Kiper wrote: > On Wed, Mar 11, 2020 at 11:47:35AM +0100, Daniel Kiper wrote: > > On Tue, Mar 03, 2020 at 06:26:03PM +0100, Daniel Kiper wrote: > > > On Wed, Feb 19, 2020 at 04:01:38PM +0100, Daniel Kiper wrote: > > > > Hi all, > > > > > > > > As I to

Re: 119 grub commands not documented in grub.texi

2020-04-22 Thread Daniel Kiper
Hi Hans, On Sat, Apr 18, 2020 at 12:53:12PM +0200, Hans Ulrich Niedermann wrote: > Hi, > > I have noticed that there are two commands documented in grub.texi > which appear not to occur anywhere within the grub source code: > 'pxe_unload' and 'uppermem'. > > @node pxe_unload > @subsection

Re: GRUB2,ECC

2020-04-22 Thread Daniel Kiper
On Sun, Apr 19, 2020 at 08:47:08PM +0800, 9. wrote: > Hi, have you considered making grub2 support ecc, and if so, when? > Thanks for reading and looking forward to your reply. > > I would like to add a few words to my question > ECC is an algorithm for encryption——Elliptic curve encryption algorit

Re: 119 grub commands not documented in grub.texi

2020-04-22 Thread Eli Schwartz
On 4/22/20 6:10 AM, Daniel Kiper wrote: >> If you want me to, I can submit a patch for the check-commands.py > > I cannot find check-commands.py, anyway... > >> script to autogenerate a list of undocumented commands which should be >> documented which can then be auto-included in grub.texi and ap

Re: 119 grub commands not documented in grub.texi

2020-04-22 Thread Hans Ulrich Niedermann
On Wed, 22 Apr 2020 12:10:31 +0200 Daniel Kiper wrote: > On Sat, Apr 18, 2020 at 12:53:12PM +0200, Hans Ulrich Niedermann > wrote: > > I have noticed that there are two commands documented in grub.texi > > which appear not to occur anywhere within the grub source code: > > 'pxe_unload' and 'upper

[PATCH 2/3] docs: Remove docs for non-existing pxe_unload command

2020-04-22 Thread Hans Ulrich Niedermann
Remove the documentation for the pxe_unload command from the docs/grub.texi file. The pxe_unload command is not implemented in the grub source at all and appears to have been removed in commit 71a78acb0648d3d73c95ab0f021f907499aacc0 (from 2011-07-05). Signed-off-by: Hans Ulrich Niedermann --- d

[PATCH 1/3] docs: Add grub command documentation checks

2020-04-22 Thread Hans Ulrich Niedermann
This adds the docs/check-commands.py script which checks whether grub commands implemented in the git source tree are documented in docs/grub.texi and vice versa. During a standard "make" command, BUILT_SOURCES makes sure that docs/undocumented-commands.texi will be created (if it does not exist y

[PATCH 1/3 v2] docs: Add grub command documentation checks

2020-04-22 Thread Hans Ulrich Niedermann
This adds the docs/check-commands.py script which checks whether grub commands implemented in the git source tree are documented in docs/grub.texi and vice versa. During a standard "make" command, BUILT_SOURCES makes sure that docs/undocumented-commands.texi will be created (if it does not exist y

[PATCH] gitignore: Add a few forgotten files

2020-04-22 Thread Hans Ulrich Niedermann
Add a few forgotten files to .gitignore which are generated when building grub: /30_uefi-firmware /ChangeLog /docs/*.info-* Signed-off-by: Hans Ulrich Niedermann --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 819cd185d..149b3713a

Re: [PATCH] gitignore: Add a few forgotten files

2020-04-22 Thread John Paul Adrian Glaubitz
Hi Hans Ulrich! On 4/22/20 9:44 PM, Hans Ulrich Niedermann wrote: > Signed-off-by: Hans Ulrich Niedermann > --- > .gitignore | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/.gitignore b/.gitignore > index 819cd185d..149b3713a 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -3,6 +3

Re: [PATCH] gitignore: Add a few forgotten files

2020-04-22 Thread Hans Ulrich Niedermann
On Wed, 22 Apr 2020 21:54:14 +0200 John Paul Adrian Glaubitz wrote: > On 4/22/20 9:44 PM, Hans Ulrich Niedermann wrote: > > Signed-off-by: Hans Ulrich Niedermann > > --- > > .gitignore | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/.gitignore b/.gitignore > > index 819cd185d

Re: [PATCH] gitignore: Add a few forgotten files

2020-04-22 Thread John Paul Adrian Glaubitz
On 4/22/20 10:31 PM, Hans Ulrich Niedermann wrote: >> What's with the preceding slash in the filenames? Is it really >> "/30_uefi-firmware"? > > Yes. > > If a ".gitignore" file contains > > /ChangeLog > > then git will only ignore a file named "ChangeLog" located in the same > directory whe