summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-08-06 21:32:05 +0200
committerTianjie Xu <xunchang@google.com>2020-01-22 23:01:46 +0100
commit5e6c4e9a91674826bf11cab604250b41a9326fd8 (patch)
tree301de0927faa32b37e26cfaca256bb4393150f92 /recovery.cpp
parentMerge "Retire the Tron metrics reporting for non-A/B update" am: 6bdacc40ef am: fed0b90045 (diff)
downloadandroid_bootable_recovery-5e6c4e9a91674826bf11cab604250b41a9326fd8.tar
android_bootable_recovery-5e6c4e9a91674826bf11cab604250b41a9326fd8.tar.gz
android_bootable_recovery-5e6c4e9a91674826bf11cab604250b41a9326fd8.tar.bz2
android_bootable_recovery-5e6c4e9a91674826bf11cab604250b41a9326fd8.tar.lz
android_bootable_recovery-5e6c4e9a91674826bf11cab604250b41a9326fd8.tar.xz
android_bootable_recovery-5e6c4e9a91674826bf11cab604250b41a9326fd8.tar.zst
android_bootable_recovery-5e6c4e9a91674826bf11cab604250b41a9326fd8.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index e4b8e45fb..9747aae82 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -687,7 +687,11 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri
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(