am 501282a4: am b4b41daa: am 0ddfa329: Allow mounting squashfs partitions

* commit '501282a42dfbd9f4d33a1009daa387d1d0f0f368':
  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);