summaryrefslogtreecommitdiffstats
path: root/updater/simulator_runtime.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-07-17 19:44:25 +0200
committerandroid-build-merger <android-build-merger@google.com>2019-07-17 19:44:25 +0200
commit94bc9e1010f484727f5d5838d78369fc08175d02 (patch)
treefa9e56486c748d3426dcf9ba3b92f8cfa281e1bf /updater/simulator_runtime.cpp
parentMerge "Drop the device specific support for update host simulator" (diff)
parentMerge "Add command line parser for simulator" (diff)
downloadandroid_bootable_recovery-94bc9e1010f484727f5d5838d78369fc08175d02.tar
android_bootable_recovery-94bc9e1010f484727f5d5838d78369fc08175d02.tar.gz
android_bootable_recovery-94bc9e1010f484727f5d5838d78369fc08175d02.tar.bz2
android_bootable_recovery-94bc9e1010f484727f5d5838d78369fc08175d02.tar.lz
android_bootable_recovery-94bc9e1010f484727f5d5838d78369fc08175d02.tar.xz
android_bootable_recovery-94bc9e1010f484727f5d5838d78369fc08175d02.tar.zst
android_bootable_recovery-94bc9e1010f484727f5d5838d78369fc08175d02.zip
Diffstat (limited to 'updater/simulator_runtime.cpp')
-rw-r--r--updater/simulator_runtime.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/updater/simulator_runtime.cpp b/updater/simulator_runtime.cpp
index c8718c71a..d2074d69a 100644
--- a/updater/simulator_runtime.cpp
+++ b/updater/simulator_runtime.cpp
@@ -87,7 +87,11 @@ int SimulatorRuntime::WipeBlockDevice(const std::string_view filename, size_t /*
}
bool SimulatorRuntime::ReadFileToString(const std::string_view filename,
- std::string* /* content */) const {
+ std::string* content) const {
+ if (android::base::EndsWith(filename, "oem.prop")) {
+ return android::base::ReadFileToString(source_->GetOemSettings(), content);
+ }
+
LOG(INFO) << "SKip reading filename " << filename;
return true;
}