Home | History | Annotate | Download | only in recovery

Lines Matching refs:fs_type

65         printf("  %d %s %s %s %lld\n", i, v->mount_point, v->fs_type,
81 if (strcmp(v->fs_type, "ramdisk") == 0) {
102 if (strcmp(v->fs_type, "yaffs2") == 0) {
112 return mtd_mount_partition(partition, v->mount_point, v->fs_type, 0);
113 } else if (strcmp(v->fs_type, "ext4") == 0 ||
114 strcmp(v->fs_type, "vfat") == 0) {
115 result = mount(v->blk_device, v->mount_point, v->fs_type,
123 LOGE("unknown fs_type \"%s\" for %s\n", v->fs_type, v->mount_point);
133 if (strcmp(v->fs_type, "ramdisk") == 0) {
175 if (strcmp(v->fs_type, "ramdisk") == 0) {
190 if (strcmp(v->fs_type, "yaffs2") == 0 || strcmp(v->fs_type, "mtd") == 0) {
213 if (strcmp(v->fs_type, "ext4") == 0 || strcmp(v->fs_type, "f2fs") == 0) {
234 if (strcmp(v->fs_type, "ext4") == 0) {
238 LOGE("format_volume: crypt footer + negative length (%zd) not supported on %s\n", length, v->fs_type);
242 LOGE("format_volume: negative length (%zd) not supported on %s\n", length, v->fs_type);
247 LOGE("format_volume: failed to create %s command for %s\n", v->fs_type, v->blk_device);
257 LOGE("format_volume: make %s failed on %s with %d(%s)\n", v->fs_type, v->blk_device, result, strerror(errno));
263 LOGE("format_volume: fs_type \"%s\" unsupported\n", v->fs_type);