From 3690f710db1372d549b8bfedcdc2d5ed1a7f84d6 Mon Sep 17 00:00:00 2001 From: Javier Martinez Canillas Date: Tue, 26 Feb 2019 08:35:22 +0100 Subject: [PATCH] 99-grub-mkconfig: Don't update grubenv generating entries on ppc64le 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 --- 99-grub-mkconfig.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/99-grub-mkconfig.install b/99-grub-mkconfig.install index 5f9545d..e370899 100755 --- a/99-grub-mkconfig.install +++ b/99-grub-mkconfig.install @@ -17,7 +17,7 @@ COMMAND="$1" case "$COMMAND" in add|remove) - grub2-mkconfig -o /boot/grub2/grub.cfg >& /dev/null + grub2-mkconfig --no-grubenv-update -o /boot/grub2/grub.cfg >& /dev/null ;; *) ;;