From e023d79fba5a51296c81514c99c477c876c8c2fc Mon Sep 17 00:00:00 2001 From: Tom Marshall Date: Tue, 1 Dec 2015 11:45:37 -0800 Subject: recovery: Fix mounting f2fs partitions Change-Id: I9d94b611ab9a873b6b57a6d22bf78de131e3c8e5 --- roots.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/roots.cpp b/roots.cpp index 3c51c35..ceafed9 100644 --- a/roots.cpp +++ b/roots.cpp @@ -224,6 +224,7 @@ int ensure_path_mounted_at(const char* path, const char* mount_point, bool force } return mtd_mount_partition(partition, mount_point, v->fs_type, 0); } else if (strcmp(v->fs_type, "ext4") == 0 || + strcmp(v->fs_type, "f2fs") == 0 || strcmp(v->fs_type, "squashfs") == 0 || strcmp(v->fs_type, "vfat") == 0) { unsigned long mntflags = v->flags; -- cgit v1.1