summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-09-04 18:59:39 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-09-04 18:59:39 +0200
commita062fae9d7c69b2e701e3c27ac34fef506f67218 (patch)
treef8bc98553785b0d1ab524b0aa0d62cc4e6a32662
parentMerge "applypatch: {Load,Save}FileContents return bool values." (diff)
parentsupport mounting f2fs in recovery mode (diff)
downloadandroid_bootable_recovery-a062fae9d7c69b2e701e3c27ac34fef506f67218.tar
android_bootable_recovery-a062fae9d7c69b2e701e3c27ac34fef506f67218.tar.gz
android_bootable_recovery-a062fae9d7c69b2e701e3c27ac34fef506f67218.tar.bz2
android_bootable_recovery-a062fae9d7c69b2e701e3c27ac34fef506f67218.tar.lz
android_bootable_recovery-a062fae9d7c69b2e701e3c27ac34fef506f67218.tar.xz
android_bootable_recovery-a062fae9d7c69b2e701e3c27ac34fef506f67218.tar.zst
android_bootable_recovery-a062fae9d7c69b2e701e3c27ac34fef506f67218.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";