summaryrefslogtreecommitdiffstats
path: root/applypatch/freecache.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2018-02-04 02:20:56 +0100
committerTianjie Xu <xunchang@google.com>2018-02-13 00:19:37 +0100
commite40c80d021d667c1400b7a5d1f6d623b8450a47c (patch)
treea8f3e862ef385c608ee36bf1db2f5aa2dc13465f /applypatch/freecache.cpp
parentReorder the functions in updater/install.cpp (diff)
downloadandroid_bootable_recovery-e40c80d021d667c1400b7a5d1f6d623b8450a47c.tar
android_bootable_recovery-e40c80d021d667c1400b7a5d1f6d623b8450a47c.tar.gz
android_bootable_recovery-e40c80d021d667c1400b7a5d1f6d623b8450a47c.tar.bz2
android_bootable_recovery-e40c80d021d667c1400b7a5d1f6d623b8450a47c.tar.lz
android_bootable_recovery-e40c80d021d667c1400b7a5d1f6d623b8450a47c.tar.xz
android_bootable_recovery-e40c80d021d667c1400b7a5d1f6d623b8450a47c.tar.zst
android_bootable_recovery-e40c80d021d667c1400b7a5d1f6d623b8450a47c.zip
Diffstat (limited to 'applypatch/freecache.cpp')
-rw-r--r--applypatch/freecache.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/applypatch/freecache.cpp b/applypatch/freecache.cpp
index 0a40baa97..ec1d20cec 100644
--- a/applypatch/freecache.cpp
+++ b/applypatch/freecache.cpp
@@ -111,6 +111,12 @@ static std::set<std::string> FindExpendableFiles() {
}
int MakeFreeSpaceOnCache(size_t bytes_needed) {
+#ifndef __ANDROID__
+ // TODO (xunchang) implement a heuristic cache size check during host simulation.
+ printf("Skip making (%zu) bytes free space on cache; program is running on host\n", bytes_needed);
+ return 0;
+#endif
+
size_t free_now = FreeSpaceForFile("/cache");
printf("%zu bytes free on /cache (%zu needed)\n", free_now, bytes_needed);