Skip to content

Commit

Permalink
add x86 systemd-boot option
Browse files Browse the repository at this point in the history
Signed-off-by: Jeremy Linton <jeremy.linton@arm.com>
  • Loading branch information
jlintonarm committed Oct 14, 2022
1 parent ca9fccd commit 4c21e95
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pyanaconda/modules/storage/bootloader/efi.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from pyanaconda.anaconda_loggers import get_module_logger
log = get_module_logger(__name__)

__all__ = ["EFIBase", "EFIGRUB", "Aarch64EFIGRUB", "ArmEFIGRUB", "MacEFIGRUB", "Aarch64EFISystemdBoot"]
__all__ = ["EFIBase", "EFIGRUB", "Aarch64EFIGRUB", "ArmEFIGRUB", "MacEFIGRUB", "Aarch64EFISystemdBoot", "x64EFISystemdBoot"]


class EFIBase(object):
Expand Down Expand Up @@ -262,6 +262,14 @@ def __init__(self):
super().__init__()
self._packages64 = []

class x64EFISystemdBoot(EFISYSTEMD):
_efi_binary = "\\systemd-bootx64.efi"

def __init__(self):
super().__init__()
self._packages64 = []



class ArmEFIGRUB(EFIGRUB):
_serial_consoles = ["ttyAMA", "ttyS"]
Expand Down

0 comments on commit 4c21e95

Please sign in to comment.