Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b4b41daa authored by Mohamad Ayyash's avatar Mohamad Ayyash Committed by Android Git Automerger
Browse files

am 0ddfa329: Allow mounting squashfs partitions

* commit '0ddfa329':
  Allow mounting squashfs partitions
parents 599fc2c0 0ddfa329
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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);