diff --git a/otaclient/app/boot_control/_jetson_cboot.py b/otaclient/app/boot_control/_jetson_cboot.py index 306f0e018..35fbe9cfe 100644 --- a/otaclient/app/boot_control/_jetson_cboot.py +++ b/otaclient/app/boot_control/_jetson_cboot.py @@ -36,8 +36,8 @@ NVBootctrlCommon, NVBootctrlTarget, SlotID, - parse_bsp_version, copy_standby_slot_boot_to_internal_emmc, + parse_bsp_version, preserve_ota_config_files_to_standby, update_standby_slot_extlinux_cfg, ) diff --git a/otaclient/app/boot_control/_jetson_common.py b/otaclient/app/boot_control/_jetson_common.py index d1ae79682..6a5b26bf1 100644 --- a/otaclient/app/boot_control/_jetson_common.py +++ b/otaclient/app/boot_control/_jetson_common.py @@ -30,6 +30,7 @@ from typing_extensions import Annotated, Literal, Self from otaclient.app.common import write_str_to_file_sync + from ..common import copytree_identical from ._common import CMDHelperFuncs diff --git a/otaclient/app/boot_control/_jetson_uefi.py b/otaclient/app/boot_control/_jetson_uefi.py index 701bb5bd3..265e90087 100644 --- a/otaclient/app/boot_control/_jetson_uefi.py +++ b/otaclient/app/boot_control/_jetson_uefi.py @@ -37,8 +37,8 @@ FirmwareBSPVersionControl, NVBootctrlCommon, SlotID, - parse_bsp_version, copy_standby_slot_boot_to_internal_emmc, + parse_bsp_version, preserve_ota_config_files_to_standby, update_standby_slot_extlinux_cfg, )