Skip to content

Commit

Permalink
Add the grub packages removed from comps to grub installs
Browse files Browse the repository at this point in the history
Signed-off-by: Jeremy Linton <jeremy.linton@arm.com>
  • Loading branch information
jlintonarm authored and poncovka committed Mar 9, 2023
1 parent d8f0384 commit 1891b0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyanaconda/modules/storage/bootloader/efi.py
Expand Up @@ -147,7 +147,7 @@ def install(self, args=None):
class EFIGRUB(EFIBase, GRUB2):
"""EFI GRUBv2"""
_packages32 = [ "grub2-efi-ia32", "shim-ia32" ]
_packages_common = [ "efibootmgr", "grub2-tools" ]
_packages_common = ["efibootmgr", "grub2-tools", "grub2-tools-extra", "grubby" ]
stage2_is_valid_stage1 = False
stage2_bootable = False

Expand Down Expand Up @@ -249,7 +249,7 @@ class Aarch64EFIGRUB(EFIGRUB):

def __init__(self):
super().__init__()
self._packages64 = ["grub2-efi-aa64", "shim-aa64"]
self._packages64 = ["grub2-efi-aa64", "shim-aa64", "grub2-efi-aa64-cdboot"]


class Aarch64EFISystemdBoot(EFISystemdBoot):
Expand Down

0 comments on commit 1891b0f

Please sign in to comment.