67f07b7c9e
- Add luks2 to GRUB_MODULES - 20-grub-install: Create a symvers.gz symbolic link - 20-grub-install: Always use fedora as the boot entry --class Resolves: rhbz#1957014 - grub.macros: Install font in /boot/grub2 instead of the ESP Resolves: rhbz#1739762 - grub.macros: Use consistent file mode for legacy and EFI Resolves: rhbz#1965794 - Drop grub2 prelink configuration Resolves: rhbz#1659675 - Remove triggers needed to upgrade from legacy GRUB - Don't harcode grub2 in the spec file - Update to unifont-13.0.06 Resolves: rhbz#1939125 - 20-grub-install: Use relative paths for btrfs in BLS snippets Resolves: rhbz#1906191 - Don't update the cmdline when generating legacy menuentry commands - Suppress gettext error message Resolves: rhbz#1592124 - grub-boot-success.timer: Only run if not in a container Resolves: rhbz#1914571 - grub-set-password: Always use /boot/grub2/user.cfg as password default Resolves: rhbz#1955294 - Remove outdated URL for BLS document Resolves: rhbz#1926453 - templates: Check for EFI at runtime instead of config generation time Resolves: rhbz#1823864 - efi: Print an error if boot to firmware setup is not supported Resolves: rhbz#1823864 Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Javier Martinez Canillas <javierm@redhat.com>
|
|
Date: Thu, 17 Jun 2021 14:31:42 +0200
|
|
Subject: [PATCH] Don't update the cmdline when generating legacy menuentry
|
|
commands
|
|
|
|
On OPAL ppc64le machines with an old petitboot version that doesn't have
|
|
support to parse BLS snippets, the grub2-mkconfig script is executed to
|
|
generate menuentry commands from the BLS snippets.
|
|
|
|
In this case, the script is executed with the --no-grubenv-update option
|
|
that indicates that no side effects should happen when running the script.
|
|
|
|
But the options field in the BLS snippets are updated regardless, only do
|
|
the update if --no-grubenv-update was not used.
|
|
|
|
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
|
|
---
|
|
util/grub.d/10_linux.in | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
|
|
index 68adb55d893..c9296154f51 100644
|
|
--- a/util/grub.d/10_linux.in
|
|
+++ b/util/grub.d/10_linux.in
|
|
@@ -261,7 +261,9 @@ if [ -z "\${kernelopts}" ]; then
|
|
fi
|
|
EOF
|
|
|
|
- update_bls_cmdline
|
|
+ if [ "x${GRUB_GRUBENV_UPDATE}" = "xyes" ]; then
|
|
+ update_bls_cmdline
|
|
+ fi
|
|
|
|
if [ "x${BLS_POPULATE_MENU}" = "xtrue" ]; then
|
|
populate_menu
|