diff options
Diffstat (limited to 'src/utils/boot.py')
-rw-r--r-- | src/utils/boot.py | 26 |
1 files changed, 6 insertions, 20 deletions
diff --git a/src/utils/boot.py b/src/utils/boot.py index 399f4ba..244f994 100644 --- a/src/utils/boot.py +++ b/src/utils/boot.py @@ -62,19 +62,12 @@ def _boot_uefi_windows(disk, part, mountpoint): if not mount_mkdir(esp, esp_mountpoint): raise OgError(f'Unable to mount detected EFI System Partition at {esp} into {esp_mountpoint}') - loader_paths = [f'{esp_mountpoint}/EFI/{bootlabel}/Boot/bootmgfw.efi', - f'{esp_mountpoint}/EFI/Microsoft/Boot/bootmgfw.efi'] try: - for efi_app in loader_paths: - if os.path.exists(efi_app): - loader = efi_app[len(esp_mountpoint):] - logging.info(f'Found bootloader at ESP partition: {loader}') - break - else: - raise OgError(f'Unable to locate Windows EFI bootloader bootmgfw.efi') + loader_path = find_windows_efi_loader(esp_mountpoint, bootlabel) + loader_path = loader_path[len(esp_mountpoint):] efibootmgr_delete_bootentry(bootlabel) - efibootmgr_create_bootentry(esp_disk, esp_part_number, loader, bootlabel) + efibootmgr_create_bootentry(esp_disk, esp_part_number, loader_path, bootlabel) efibootmgr_bootnext(bootlabel) finally: umount(esp_mountpoint) @@ -87,19 +80,12 @@ def _boot_uefi_linux(disk, part, mountpoint): if not mount_mkdir(esp, esp_mountpoint): raise OgError(f'Unable to mount detected EFI System Partition at {esp} into {esp_mountpoint}') - loader_paths = [f'{esp_mountpoint}/EFI/{bootlabel}/Boot/shimx64.efi', - f'{esp_mountpoint}/EFI/ubuntu/shimx64.efi'] try: - for efi_app in loader_paths: - if os.path.exists(efi_app): - loader = efi_app[len(esp_mountpoint):] - logging.info(f'Found bootloader at ESP partition: {loader}') - break - else: - raise OgError(f'Unable to locate Linux EFI bootloader shimx64.efi') + loader_path = find_linux_efi_loader(esp_mountpoint, bootlabel) + loader_path = loader_path[len(esp_mountpoint):] efibootmgr_delete_bootentry(bootlabel) - efibootmgr_create_bootentry(esp_disk, esp_part_number, loader, bootlabel) + efibootmgr_create_bootentry(esp_disk, esp_part_number, loader_path, bootlabel) efibootmgr_bootnext(bootlabel) finally: umount(esp_mountpoint) |