diff options
Diffstat (limited to 'recovery.cpp')
-rw-r--r-- | recovery.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/recovery.cpp b/recovery.cpp index e4b8e45fb..582ca48a5 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -681,13 +681,11 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri set_retry_bootloader_message(retry_count + 1, args); } - if (update_package[0] == '@') { - ensure_path_mounted(update_package + 1); - } else { - ensure_path_mounted(update_package); - } - - if (install_with_fuse) { + bool should_use_fuse = false; + if (!SetupPackageMount(update_package, &should_use_fuse)) { + LOG(INFO) << "Failed to set up the package access, skipping installation"; + status = INSTALL_ERROR; + } else if (install_with_fuse || should_use_fuse) { LOG(INFO) << "Installing package " << update_package << " with fuse"; status = InstallWithFuseFromPath(update_package, ui); } else if (auto memory_package = Package::CreateMemoryPackage( |