summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-07-07 02:15:47 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-07-07 02:15:48 +0200
commit2490dbc9325ad522ec5ee031f5493d2e975f3a49 (patch)
tree48b7ce5bb1c7db0a55acc152dcc262d32f1a267a
parentMerge "More accurate checking for overlapped ranges." (diff)
parentAllow mounting squashfs partitions (diff)
downloadandroid_bootable_recovery-2490dbc9325ad522ec5ee031f5493d2e975f3a49.tar
android_bootable_recovery-2490dbc9325ad522ec5ee031f5493d2e975f3a49.tar.gz
android_bootable_recovery-2490dbc9325ad522ec5ee031f5493d2e975f3a49.tar.bz2
android_bootable_recovery-2490dbc9325ad522ec5ee031f5493d2e975f3a49.tar.lz
android_bootable_recovery-2490dbc9325ad522ec5ee031f5493d2e975f3a49.tar.xz
android_bootable_recovery-2490dbc9325ad522ec5ee031f5493d2e975f3a49.tar.zst
android_bootable_recovery-2490dbc9325ad522ec5ee031f5493d2e975f3a49.zip
-rw-r--r--roots.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/roots.cpp b/roots.cpp
index f863cb277..2bd457efe 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -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);