Run mkconfig when GRUB_ENABLE_BLSCFG is false

Resolves: #RHEL-113830

Signed-off-by: Leo Sandoval <lsandova@redhat.com>
This commit is contained in:
Leo Sandoval 2025-09-10 14:17:17 -06:00
parent 53468617e9
commit aa68f3c873
2 changed files with 7 additions and 1 deletions

View File

@ -16,6 +16,8 @@ if [[ x$GRUB_ENABLE_BLSCFG != xfalse ]]; then
if [[ $ARCH = "ppc64" || $ARCH = "ppc64le" ]]; then
RUN_MKCONFIG="true"
fi
else
RUN_MKCONFIG="true"
fi
# A traditional grub configuration file needs to be generated only in the case when

View File

@ -7,7 +7,7 @@
Name: grub2
Epoch: 1
Version: 2.02
Release: 168%{?dist}
Release: 169%{?dist}
Summary: Bootloader with support for Linux, Multiboot and more
Group: System Environment/Base
License: GPLv3+
@ -526,6 +526,10 @@ fi
%endif
%changelog
* Wed Sep 10 2025 Leo Sandoval <lsandova@redhat.com> - 2.02-169
- Run mkconfig when GRUB_ENABLE_BLSCFG is false
- Resolves: #RHEL-113830
* Wed Sep 3 2025 Leo Sandoval <lsandova@redhat.com> - 2.02-168
- Strip correctly BLS files with conf extension
- Resolves: #RHEL-112099