summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/utils/boot.py2
-rw-r--r--src/utils/uefi.py14
2 files changed, 3 insertions, 13 deletions
diff --git a/src/utils/boot.py b/src/utils/boot.py
index 04cae8e..baa3f49 100644
--- a/src/utils/boot.py
+++ b/src/utils/boot.py
@@ -111,7 +111,7 @@ def boot_os_at(disk, part):
if not mount_mkdir(device, mountpoint):
raise RuntimeError(f'Cannot probe OS family. Unable to mount {device} at {esp_mountpoint}.')
- is_uefi = is_uefi_supported(disk)
+ is_uefi = is_uefi_supported()
if is_uefi:
logging.info('UEFI support detected')
else:
diff --git a/src/utils/uefi.py b/src/utils/uefi.py
index e113512..9bc2e09 100644
--- a/src/utils/uefi.py
+++ b/src/utils/uefi.py
@@ -11,7 +11,6 @@ import logging
import os
import shlex
import subprocess
-from src.utils.disk import get_efi_partition
import fdisk
@@ -47,17 +46,8 @@ def _check_efibootmgr_json():
return supported
-def is_uefi_supported(disknum):
- is_supported = os.path.exists("/sys/firmware/efi")
-
- if is_supported:
- try:
- get_efi_partition(disknum)
- except Exception as e:
- logging.info(e)
- is_supported = False
-
- return is_supported
+def is_uefi_supported():
+ return os.path.exists("/sys/firmware/efi")
def run_efibootmgr_json():