diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-03-07 09:46:41 +0100 |
---|---|---|
committer | lupoDharkael <izhe@hotmail.es> | 2024-03-08 12:43:10 +0100 |
commit | 7f18485effb300680241bbd84186fdd5c160ec26 (patch) | |
tree | 19b1562654245e12b02a6cc287bcac6cd1485b53 /src/utils/boot.py | |
parent | 9970c8e33d7a422e807a23af712236db01284f9a (diff) |
utils: improve uefi detection mechanism
Checking the existence /sys/firmware/efi as it might appear
sometimes in BIOS installs if the BIOS configuration is not
proper. Checking for the EFI partition is the safest method
to veryfy the install type.
Diffstat (limited to 'src/utils/boot.py')
-rw-r--r-- | src/utils/boot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/boot.py b/src/utils/boot.py index cd66357..4de20b9 100644 --- a/src/utils/boot.py +++ b/src/utils/boot.py @@ -69,7 +69,7 @@ def _boot_uefi_linux(disk, part, mountpoint): umount(esp_mountpoint) def boot_os_at(disk, part): - if not is_uefi_supported(): + if not is_uefi_supported(disk): raise NotImplementedError('BIOS booting is not implemented yet') device = get_partition_device(disk, part) |