summaryrefslogtreecommitdiffstats
path: root/updater/simulator_runtime.cpp
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2020-04-28 22:31:11 +0200
committerYifan Hong <elsk@google.com>2020-05-08 04:25:26 +0200
commitdff80042750992ed635056cd9719481a14f93007 (patch)
tree7ceaaab834a5f056639d4c168a0a88b066981109 /updater/simulator_runtime.cpp
parentAdd slot suffix to DAP ops (diff)
downloadandroid_bootable_recovery-dff80042750992ed635056cd9719481a14f93007.tar
android_bootable_recovery-dff80042750992ed635056cd9719481a14f93007.tar.gz
android_bootable_recovery-dff80042750992ed635056cd9719481a14f93007.tar.bz2
android_bootable_recovery-dff80042750992ed635056cd9719481a14f93007.tar.lz
android_bootable_recovery-dff80042750992ed635056cd9719481a14f93007.tar.xz
android_bootable_recovery-dff80042750992ed635056cd9719481a14f93007.tar.zst
android_bootable_recovery-dff80042750992ed635056cd9719481a14f93007.zip
Diffstat (limited to '')
-rw-r--r--updater/simulator_runtime.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/updater/simulator_runtime.cpp b/updater/simulator_runtime.cpp
index 3ed7bf337..57dfb32d4 100644
--- a/updater/simulator_runtime.cpp
+++ b/updater/simulator_runtime.cpp
@@ -130,3 +130,8 @@ bool SimulatorRuntime::UpdateDynamicPartitions(const std::string_view op_list_va
}
return true;
}
+
+std::string SimulatorRuntime::AddSlotSuffix(const std::string_view arg) const {
+ LOG(INFO) << "Skip adding slot suffix to " << arg;
+ return std::string(arg);
+}