summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2018-09-05 05:09:53 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2018-09-05 05:09:53 +0200
commitb47c557ea28eaf7225c0799f13eb1f553c7b4e3e (patch)
treef8bc98553785b0d1ab524b0aa0d62cc4e6a32662
parentSnap for 4989423 from 4ca55f202e9fc183824d2375bd0b7467bbaeed34 to qt-release (diff)
parentMerge "support mounting f2fs in recovery mode" am: a062fae9d7 am: 15e957d3f6 (diff)
downloadandroid_bootable_recovery-b47c557ea28eaf7225c0799f13eb1f553c7b4e3e.tar
android_bootable_recovery-b47c557ea28eaf7225c0799f13eb1f553c7b4e3e.tar.gz
android_bootable_recovery-b47c557ea28eaf7225c0799f13eb1f553c7b4e3e.tar.bz2
android_bootable_recovery-b47c557ea28eaf7225c0799f13eb1f553c7b4e3e.tar.lz
android_bootable_recovery-b47c557ea28eaf7225c0799f13eb1f553c7b4e3e.tar.xz
android_bootable_recovery-b47c557ea28eaf7225c0799f13eb1f553c7b4e3e.tar.zst
android_bootable_recovery-b47c557ea28eaf7225c0799f13eb1f553c7b4e3e.zip
-rw-r--r--roots.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/roots.cpp b/roots.cpp
index 06a77c186..c29771af6 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -126,7 +126,7 @@ int ensure_path_mounted_at(const char* path, const char* mount_point) {
mkdir(mount_point, 0755); // in case it doesn't already exist
if (strcmp(v->fs_type, "ext4") == 0 || strcmp(v->fs_type, "squashfs") == 0 ||
- strcmp(v->fs_type, "vfat") == 0) {
+ strcmp(v->fs_type, "vfat") == 0 || strcmp(v->fs_type, "f2fs") == 0) {
int result = mount(v->blk_device, mount_point, v->fs_type, v->flags, v->fs_options);
if (result == -1 && fs_mgr_is_formattable(v)) {
PLOG(ERROR) << "Failed to mount " << mount_point << "; formatting";