summaryrefslogtreecommitdiffstats
path: root/updater/updater_runtime.cpp
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2020-05-13 19:42:08 +0200
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-13 19:42:08 +0200
commit492abcd14b4cc97042fd8c7cee724bed8d2514e6 (patch)
treeac504cb7b03cd61ef0b5312c99427f8678c95ead /updater/updater_runtime.cpp
parentRename external storage properties. am: 94abf26ba2 (diff)
parentMerge changes from topic "nonab_on_vab_r" into rvc-dev (diff)
downloadandroid_bootable_recovery-492abcd14b4cc97042fd8c7cee724bed8d2514e6.tar
android_bootable_recovery-492abcd14b4cc97042fd8c7cee724bed8d2514e6.tar.gz
android_bootable_recovery-492abcd14b4cc97042fd8c7cee724bed8d2514e6.tar.bz2
android_bootable_recovery-492abcd14b4cc97042fd8c7cee724bed8d2514e6.tar.lz
android_bootable_recovery-492abcd14b4cc97042fd8c7cee724bed8d2514e6.tar.xz
android_bootable_recovery-492abcd14b4cc97042fd8c7cee724bed8d2514e6.tar.zst
android_bootable_recovery-492abcd14b4cc97042fd8c7cee724bed8d2514e6.zip
Diffstat (limited to 'updater/updater_runtime.cpp')
-rw-r--r--updater/updater_runtime.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/updater/updater_runtime.cpp b/updater/updater_runtime.cpp
index b1b8863fd..e93830505 100644
--- a/updater/updater_runtime.cpp
+++ b/updater/updater_runtime.cpp
@@ -28,6 +28,7 @@
#include <android-base/strings.h>
#include <android-base/unique_fd.h>
#include <ext4_utils/wipe.h>
+#include <fs_mgr.h>
#include <selinux/label.h>
#include <tune2fs.h>
@@ -186,3 +187,7 @@ int UpdaterRuntime::Tune2Fs(const std::vector<std::string>& args) const {
// tune2fs changes the filesystem parameters on an ext2 filesystem; it returns 0 on success.
return tune2fs_main(tune2fs_args.size() - 1, tune2fs_args.data());
}
+
+std::string UpdaterRuntime::AddSlotSuffix(const std::string_view arg) const {
+ return std::string(arg) + fs_mgr_get_slot_suffix();
+}