Import from CS git
This commit is contained in:
parent
64acfa274a
commit
38466a0c77
2
.gitignore
vendored
2
.gitignore
vendored
@ -6,4 +6,4 @@ SOURCES/redhatsecureboot701.cer
|
|||||||
SOURCES/redhatsecurebootca3.cer
|
SOURCES/redhatsecurebootca3.cer
|
||||||
SOURCES/redhatsecurebootca5.cer
|
SOURCES/redhatsecurebootca5.cer
|
||||||
SOURCES/theme.tar.bz2
|
SOURCES/theme.tar.bz2
|
||||||
SOURCES/unifont-5.1.20080820.pcf.gz
|
SOURCES/unifont-5.1.20080820.pcf.gz
|
||||||
|
@ -155,8 +155,9 @@ case "$COMMAND" in
|
|||||||
if [[ "x${GRUB_ENABLE_BLSCFG}" = "xtrue" ]] || [[ ! -f /sbin/new-kernel-pkg ]]; then
|
if [[ "x${GRUB_ENABLE_BLSCFG}" = "xtrue" ]] || [[ ! -f /sbin/new-kernel-pkg ]]; then
|
||||||
ARCH="$(uname -m)"
|
ARCH="$(uname -m)"
|
||||||
BLS_TARGET="${BLS_DIR}/${MACHINE_ID}-${KERNEL_VERSION}.conf"
|
BLS_TARGET="${BLS_DIR}/${MACHINE_ID}-${KERNEL_VERSION}.conf"
|
||||||
|
BLS_FAKE_TARGET="${BLS_DIR}/ffffffffffffffffffffffffffffffff-${KERNEL_VERSION}.conf"
|
||||||
BLS_DEBUG="$(echo ${BLS_TARGET} | sed -e "s/${KERNEL_VERSION}/${KERNEL_VERSION}~debug/")"
|
BLS_DEBUG="$(echo ${BLS_TARGET} | sed -e "s/${KERNEL_VERSION}/${KERNEL_VERSION}~debug/")"
|
||||||
rm -f "${BLS_TARGET}" "${BLS_DEBUG}"
|
rm -f "${BLS_TARGET}" "${BLS_DEBUG}" "${BLS_FAKE_TARGET}"
|
||||||
|
|
||||||
for i in vmlinuz System.map config zImage.stub dtb; do
|
for i in vmlinuz System.map config zImage.stub dtb; do
|
||||||
rm -rf "/boot/${i}-${KERNEL_VERSION}"
|
rm -rf "/boot/${i}-${KERNEL_VERSION}"
|
||||||
|
10
SOURCES/99-grub-mkconfig.install
Normal file → Executable file
10
SOURCES/99-grub-mkconfig.install
Normal file → Executable file
@ -9,16 +9,22 @@ ARCH=$(uname -m)
|
|||||||
[[ -f /etc/default/grub ]] && . /etc/default/grub
|
[[ -f /etc/default/grub ]] && . /etc/default/grub
|
||||||
|
|
||||||
# Can't assume a BLS capable bootloader on ppc64
|
# Can't assume a BLS capable bootloader on ppc64
|
||||||
if [[ x$GRUB_ENABLE_BLSCFG != xfalse &&
|
if [[ x$GRUB_ENABLE_BLSCFG = xtrue &&
|
||||||
$ARCH != "ppc64" && $ARCH != "ppc64le" ]]; then
|
$ARCH != "ppc64" && $ARCH != "ppc64le" ]]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
COMMAND="$1"
|
COMMAND="$1"
|
||||||
|
|
||||||
|
grub_cfg=/boot/grub2/grub.cfg
|
||||||
|
if mountpoint -q /boot/efi; then
|
||||||
|
os_name=$(grep ^ID= /etc/os-release | sed -e 's/^ID=//' -e 's/rhel/redhat/' -e 's/\"//g')
|
||||||
|
grub_cfg=/boot/efi/EFI/$os_name/grub.cfg
|
||||||
|
fi
|
||||||
|
|
||||||
case "$COMMAND" in
|
case "$COMMAND" in
|
||||||
add|remove)
|
add|remove)
|
||||||
grub2-mkconfig --no-grubenv-update -o /boot/grub2/grub.cfg >& /dev/null
|
grub2-mkconfig --no-grubenv-update -o $grub_cfg >& /dev/null
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
;;
|
;;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
Name: grub2
|
Name: grub2
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 2.02
|
Version: 2.02
|
||||||
Release: 158%{?dist}
|
Release: 160%{?dist}
|
||||||
Summary: Bootloader with support for Linux, Multiboot and more
|
Summary: Bootloader with support for Linux, Multiboot and more
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
@ -523,6 +523,14 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Nov 13 2024 Leo Sandoval <lsandova@redhat.com> - 2.02-160
|
||||||
|
- Remove BLS fake config in case of kernel removal
|
||||||
|
- Resolves: #RHEL-4316
|
||||||
|
|
||||||
|
* Tue Nov 12 2024 Leo Sandoval <lsandova@redhat.com> - 2.02-159
|
||||||
|
- Fix default behavior when GRUB_ENABLE_BLSCFG is not present
|
||||||
|
- Resolves: #RHEL-4319
|
||||||
|
|
||||||
* Thu Sep 19 2024 Leo Sandoval <lsandova@redhat.com> - 2.02-158
|
* Thu Sep 19 2024 Leo Sandoval <lsandova@redhat.com> - 2.02-158
|
||||||
- grub-mkconfig.in: turn off executable owner bit
|
- grub-mkconfig.in: turn off executable owner bit
|
||||||
- Resolves: #RHEL-58835
|
- Resolves: #RHEL-58835
|
||||||
|
Loading…
Reference in New Issue
Block a user