Loading roots.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -195,7 +195,7 @@ int ensure_path_mounted_at(const char* path, const char* mount_point) { mkdir_p(mount_point, 0755); // in case it doesn't already exist if (strcmp(v->fs_type, "ext4") == 0 || strcmp(v->fs_type, "squashfs") == 0 || strcmp(v->fs_type, "vfat") == 0) { strcmp(v->fs_type, "vfat") == 0 || strcmp(v->fs_type, "f2fs") == 0) { if (mount(v->blk_device, mount_point, v->fs_type, v->flags, v->fs_options) == -1) { PLOG(ERROR) << "Failed to mount " << mount_point; return -1; Loading Loading
roots.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -195,7 +195,7 @@ int ensure_path_mounted_at(const char* path, const char* mount_point) { mkdir_p(mount_point, 0755); // in case it doesn't already exist if (strcmp(v->fs_type, "ext4") == 0 || strcmp(v->fs_type, "squashfs") == 0 || strcmp(v->fs_type, "vfat") == 0) { strcmp(v->fs_type, "vfat") == 0 || strcmp(v->fs_type, "f2fs") == 0) { if (mount(v->blk_device, mount_point, v->fs_type, v->flags, v->fs_options) == -1) { PLOG(ERROR) << "Failed to mount " << mount_point; return -1; Loading