Add character echo for password input

2025-05-26 Thread 刘阳
Dear GRUB2 Maintainers,   I have submitted a patch  titled "lib-crypto-Add-character-echo-for-passwprd-input.path" which addresses the issue of adding character echo functionality during password input in GRUB2.   This change aims to improve user experience by providing visual feedback when typi

Re: [PATCH 1/2] Exporting variables to upper levels

2025-05-26 Thread Jiří 'bindiff' Wolker via Grub-devel
Please explain what problem you try to solve. Bash doesn't do anything of the kind. Why should we? Looks like a solution without a problem I'll provide you an example script similar to one which I use, heavily simplified to present only the specific issue: set kern_tty=tty menuentry "Start syst

Re: [PATCH 1/2] Exporting variables to upper levels

2025-05-26 Thread Vladimir 'phcoder' Serbinenko
Please explain what problem you try to solve. Bash doesn't do anything of the kind. Why should we? Looks like a solution without a problem Regards Vladimir 'phcoder' Serbinenko Le lun. 26 mai 2025, 20:34, Jiří 'bindiff' Wolker via Grub-devel < grub-devel@gnu.org> a écrit : > This adds new option

Re: [PATCH v2] ieee1275: support added for multiple nvme bootpaths

2025-05-26 Thread Daniel Kiper
On Mon, May 19, 2025 at 04:34:34PM +0530, Avnish Chouhan wrote: > This patch sets mupltiple NVMe boot-devices for more robust boot. > Scenario where NVMe multipaths are available, all the available bootpaths > (Max 5) > will be added as the boot-device. > > Signed-off-by: Avnish Chouhan > --- >

[PATCH 3/3] Documentation for the --menutitle option

2025-05-26 Thread Jiří Wolker via Grub-devel
--- docs/grub.texi | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/grub.texi b/docs/grub.texi index 34b3484dc..5b5e40c49 100644 --- a/docs/grub.texi +++ b/docs/grub.texi @@ -1845,7 +1845,7 @@ definitions do not affect the exit status in @code{$?}. When exe

[PATCH 2/3] Option to set title of submenus

2025-05-26 Thread Jiří Wolker via Grub-devel
--- grub-core/commands/menuentry.c | 50 ++ 1 file changed, 50 insertions(+) diff --git a/grub-core/commands/menuentry.c b/grub-core/commands/menuentry.c index 720e6d8ea..c40b27d8b 100644 --- a/grub-core/commands/menuentry.c +++ b/grub-core/commands/menuentry.c @@

[PATCH 1/3] Customization of GRUB menu title

2025-05-26 Thread Jiří Wolker via Grub-devel
Since these changes, the module ‘normal’ initializes environment variable ‘grub_menu_title’ with the previously hardcoded text. The variable is automatically exported, so it applies also to submenus. Scripts may change this variable to change the title of the menu. --- grub-core/normal/main.c |

[PATCH 1/3] Customization of GRUB menu title

2025-05-26 Thread Jiří 'bindiff' Wolker via Grub-devel
Since these changes, the module ‘normal’ initializes environment variable ‘grub_menu_title’ with the previously hardcoded text. The variable is automatically exported, so it applies also to submenus. Scripts may change this variable to change the title of the menu. --- grub-core/normal/main.c |

[PATCH 0/3] Allow script-configurable GRUB menu title

2025-05-26 Thread Jiří 'bindiff' Wolker via Grub-devel
This patches allow setting custom title of menus in the GRUB menu-based interface. This introduces new environment variable ‘grub_menu_title’ which can be set by the script to override the title shown in the text-based GRUB menu. This replaces the “GNU GRUB  ” message, which was set to this fixed

[PATCH 0/2] Exporting variables to upper levels

2025-05-26 Thread Jiří 'bindiff' Wolker via Grub-devel
The purpose of this patch is to allow exporting of variables to parent environment variable scopes, not only to the nested scopes. This does not break compatibility with any existing modules or GRUB configuration files/scripts. The introduced changed are: * The ‘export’ command became an extcmd.

[PATCH 1/2] Exporting variables to upper levels

2025-05-26 Thread Jiří 'bindiff' Wolker via Grub-devel
This adds new options ‘-g’ and ‘-u’ to the ‘export’ command. By default, the ‘export’ command exports the variables to lower environment context nesting levels, but not to the upper levels. This behavior is left unchanged from the original version. Using of the ‘-g’ option allows exporting of th

[PATCH 2/2] Docs for the new options of the ‘export’ command

2025-05-26 Thread Jiří 'bindiff' Wolker via Grub-devel
This documents the new ‘-g’ and ‘-u’ options added to the command to allow exporting variables to upper scopes and cancelling export (un-exporting) the variables. --- docs/grub.texi | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/grub.texi b/docs/grub.texi index

Re: [PATCH v2] grub-probe: detect DDF container similar to IMSM

2025-05-26 Thread Daniel Kiper
On Thu, Apr 24, 2025 at 11:43:28AM +0200, Renaud Métrich via Grub-devel wrote: > Similarly to Intel IMSM, there are BIOS and UEFI implementations that > support DDF containers natively. > > DDF and IMSM are very similar in handling, especially these should not > be considered as RAID abstraction.