am 2490dbc9: Merge "Allow mounting squashfs partitions"

* commit '2490dbc9325ad522ec5ee031f5493d2e975f3a49':
  Allow mounting squashfs partitions
This commit is contained in:
Tao Bao
2015-07-07 00:22:35 +00:00
committed by Android Git Automerger
+1
View File
@@ -111,6 +111,7 @@ int ensure_path_mounted(const char* path) {
}
return mtd_mount_partition(partition, v->mount_point, v->fs_type, 0);
} else if (strcmp(v->fs_type, "ext4") == 0 ||
strcmp(v->fs_type, "squashfs") == 0 ||
strcmp(v->fs_type, "vfat") == 0) {
result = mount(v->blk_device, v->mount_point, v->fs_type,
v->flags, v->fs_options);