mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-27 23:34:51 +00:00
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 <javierm@redhat.com>
This commit is contained in:
parent
c9b8b10a61
commit
3690f710db
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ COMMAND="$1"
|
||||||
|
|
||||||
case "$COMMAND" in
|
case "$COMMAND" in
|
||||||
add|remove)
|
add|remove)
|
||||||
grub2-mkconfig -o /boot/grub2/grub.cfg >& /dev/null
|
grub2-mkconfig --no-grubenv-update -o /boot/grub2/grub.cfg >& /dev/null
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue