diff options
author | Tao Bao <tbao@google.com> | 2015-07-07 02:22:35 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-07-07 02:22:35 +0200 |
commit | 4e6507f32817e2943b1f27d12f56b485993c2a44 (patch) | |
tree | 48b7ce5bb1c7db0a55acc152dcc262d32f1a267a | |
parent | am b36d9c3f: Merge "More accurate checking for overlapped ranges." (diff) | |
parent | Merge "Allow mounting squashfs partitions" (diff) | |
download | android_bootable_recovery-4e6507f32817e2943b1f27d12f56b485993c2a44.tar android_bootable_recovery-4e6507f32817e2943b1f27d12f56b485993c2a44.tar.gz android_bootable_recovery-4e6507f32817e2943b1f27d12f56b485993c2a44.tar.bz2 android_bootable_recovery-4e6507f32817e2943b1f27d12f56b485993c2a44.tar.lz android_bootable_recovery-4e6507f32817e2943b1f27d12f56b485993c2a44.tar.xz android_bootable_recovery-4e6507f32817e2943b1f27d12f56b485993c2a44.tar.zst android_bootable_recovery-4e6507f32817e2943b1f27d12f56b485993c2a44.zip |
-rw-r--r-- | roots.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |