3690f710db
The grubenv file is updated when grub-mkconfig is executed but on ppc64le is used on each kernel install to re-generate the grub2.cfg file with the updated entries. So in this case the grubenv file should not be updated. Related: rhbz#1637875 Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
25 lines
454 B
Bash
Executable File
25 lines
454 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ! [[ $KERNEL_INSTALL_MACHINE_ID ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
# Is only needed for ppc64* since we can't assume a BLS capable bootloader there
|
|
if [[ $ARCH != "ppc64" && $ARCH != "ppc64le" ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
[[ -f /etc/default/grub ]] && . /etc/default/grub
|
|
|
|
COMMAND="$1"
|
|
|
|
case "$COMMAND" in
|
|
add|remove)
|
|
grub2-mkconfig --no-grubenv-update -o /boot/grub2/grub.cfg >& /dev/null
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|