summaryrefslogtreecommitdiffstats
path: root/install/include/install/install.h
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-08-06 21:32:05 +0200
committerBryan Ferris <bferris@google.com>2020-02-13 20:16:38 +0100
commitcd8faf7eeead6fd6ee5912ddd26dab5ab6c7dda7 (patch)
tree514f930addae708edfb05b471e8d60933c1d0d52 /install/include/install/install.h
parentMerge "Revert "Force package installation with FUSE unless the package stores on device"" into qt-qpr1-dev-plus-aosp (diff)
downloadandroid_bootable_recovery-cd8faf7eeead6fd6ee5912ddd26dab5ab6c7dda7.tar
android_bootable_recovery-cd8faf7eeead6fd6ee5912ddd26dab5ab6c7dda7.tar.gz
android_bootable_recovery-cd8faf7eeead6fd6ee5912ddd26dab5ab6c7dda7.tar.bz2
android_bootable_recovery-cd8faf7eeead6fd6ee5912ddd26dab5ab6c7dda7.tar.lz
android_bootable_recovery-cd8faf7eeead6fd6ee5912ddd26dab5ab6c7dda7.tar.xz
android_bootable_recovery-cd8faf7eeead6fd6ee5912ddd26dab5ab6c7dda7.tar.zst
android_bootable_recovery-cd8faf7eeead6fd6ee5912ddd26dab5ab6c7dda7.zip
Diffstat (limited to '')
-rw-r--r--install/include/install/install.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/install/include/install/install.h b/install/include/install/install.h
index 87d43ab09..bef23e9ca 100644
--- a/install/include/install/install.h
+++ b/install/include/install/install.h
@@ -63,3 +63,7 @@ bool ReadMetadataFromPackage(ZipArchiveHandle zip, std::map<std::string, std::st
// pre-device and serial number (if presents). A/B OTA specific checks: pre-build version,
// fingerprint, timestamp.
bool CheckPackageMetadata(const std::map<std::string, std::string>& metadata, OtaType ota_type);
+
+// Ensures the path to the update package is mounted. Also set the |should_use_fuse| to true if the
+// package stays on a removable media.
+bool SetupPackageMount(const std::string& package_path, bool* should_use_fuse);