diff options
author | Raman Tenneti <rtenneti@google.com> | 2020-02-13 03:50:42 +0100 |
---|---|---|
committer | Raman Tenneti <rtenneti@google.com> | 2020-02-13 04:03:36 +0100 |
commit | daaacea96ebfc55b47f44240e2082c820c8eb234 (patch) | |
tree | 990ff845639b8a7184fb678c53d69c0a2bf1dbae /recovery.cpp | |
parent | Force package installation with FUSE unless the package stores on device (diff) | |
download | android_bootable_recovery-daaacea96ebfc55b47f44240e2082c820c8eb234.tar android_bootable_recovery-daaacea96ebfc55b47f44240e2082c820c8eb234.tar.gz android_bootable_recovery-daaacea96ebfc55b47f44240e2082c820c8eb234.tar.bz2 android_bootable_recovery-daaacea96ebfc55b47f44240e2082c820c8eb234.tar.lz android_bootable_recovery-daaacea96ebfc55b47f44240e2082c820c8eb234.tar.xz android_bootable_recovery-daaacea96ebfc55b47f44240e2082c820c8eb234.tar.zst android_bootable_recovery-daaacea96ebfc55b47f44240e2082c820c8eb234.zip |
Diffstat (limited to '')
-rw-r--r-- | recovery.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/recovery.cpp b/recovery.cpp index 9747aae82..e4b8e45fb 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -687,11 +687,7 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri ensure_path_mounted(update_package); } - 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) { + if (install_with_fuse) { LOG(INFO) << "Installing package " << update_package << " with fuse"; status = InstallWithFuseFromPath(update_package, ui); } else if (auto memory_package = Package::CreateMemoryPackage( |