diff options
author | Jose M. Guisado <jguisado@soleta.eu> | 2023-08-16 14:34:14 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-03-04 11:33:10 +0100 |
commit | 23b4b1feb631b805afc8bf55e206fa6f753e646c (patch) | |
tree | 7177f2331b63da55d4e36affdf909bb5b37b5743 | |
parent | 517c99e542813dadc6cec6f94df681f729b26613 (diff) |
live: drop IniciarSesion script when uefi booting
Replace IniciarSesion script in favor of native Python code when booting
a UEFI system. This applies when running the "session" command.
WIP: Only UEFI boots Windows systems. Raise NotImplementedError
exception trying to boot a Linux system using UEFI.
-rw-r--r-- | src/live/ogOperations.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index b72f7df..d5f22a9 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -32,6 +32,8 @@ from src.utils.probe import os_probe, cache_probe from src.utils.disk import * from src.utils.cache import generate_cache_txt, umount_cache, init_cache from src.utils.tiptorrent import * +from src.utils.uefi import * +from src.utils.boot import * from src.utils.sw_inventory import get_package_set from src.utils.hw_inventory import get_hardware_inventory, legacy_list_hardware_inventory @@ -259,6 +261,14 @@ class OgLiveOperations: def session(self, request, ogRest): disk = request.getDisk() partition = request.getPartition() + + if is_uefi_supported(): + logging.info('UEFI support detected') + logging.info(f'Booting disk={disk} partition={partition}') + boot_os_at(int(disk), int(partition)) + self.reboot() + return + cmd = f'{ogClient.OG_PATH}interfaceAdm/IniciarSesion {disk} {partition}' try: |