summaryrefslogtreecommitdiffstats
path: root/src/utils/boot.py
diff options
context:
space:
mode:
authorAlejandro Sirgo Rica <asirgo@soleta.eu>2024-04-22 13:55:21 +0200
committerAlejandro Sirgo Rica <asirgo@soleta.eu>2024-07-29 15:07:22 +0200
commit41b5f830c6d74dca69cfea1c259f7e21d4ad9bb9 (patch)
treecbd445bd832867d16e44c48afad5243472739ed5 /src/utils/boot.py
parente20cda122b87cc4ad62eaccd412d918aa38768cb (diff)
utils: consolidate code to find efi loader
Add find_windows_efi_loader and find_linux_efi_loader to reduce code duplication and to centralize efi loader path modifications.
Diffstat (limited to 'src/utils/boot.py')
-rw-r--r--src/utils/boot.py26
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)