commit | 2490dbc9325ad522ec5ee031f5493d2e975f3a49 | [log] [tgz] |
---|---|---|
author | Tao Bao <tbao@google.com> | Tue Jul 07 00:15:47 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Jul 07 00:15:48 2015 +0000 |
tree | 48b7ce5bb1c7db0a55acc152dcc262d32f1a267a | |
parent | b36d9c3f00e75dba464ff62eab94dd46d93ac94e [diff] | |
parent | 522ea7211682631bb514b899f4b308803a054329 [diff] |
Merge "Allow mounting squashfs partitions"
diff --git a/roots.cpp b/roots.cpp index f863cb2..2bd457e 100644 --- a/roots.cpp +++ b/roots.cpp
@@ -111,6 +111,7 @@ } 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);