Searched refs:fs_type (Results 1 – 4 of 4) sorted by relevance
/bootable/recovery/ |
D | roots.c | 55 device_volumes[0].fs_type = "ramdisk"; in load_volume_table() 76 char* fs_type = strtok(NULL, " \t\n"); in load_volume_table() local 91 if (mount_point && fs_type && device) { in load_volume_table() 97 device_volumes[num_volumes].fs_type = strdup(fs_type); in load_volume_table() 120 printf(" %d %s %s %s %s %lld\n", i, v->mount_point, v->fs_type, in load_volume_table() 145 if (strcmp(v->fs_type, "ramdisk") == 0) { in ensure_path_mounted() 166 if (strcmp(v->fs_type, "yaffs2") == 0) { in ensure_path_mounted() 176 return mtd_mount_partition(partition, v->mount_point, v->fs_type, 0); in ensure_path_mounted() 177 } else if (strcmp(v->fs_type, "ext4") == 0 || in ensure_path_mounted() 178 strcmp(v->fs_type, "vfat") == 0) { in ensure_path_mounted() [all …]
|
D | bootloader.c | 39 if (strcmp(v->fs_type, "mtd") == 0) { in get_bootloader_message() 41 } else if (strcmp(v->fs_type, "emmc") == 0) { in get_bootloader_message() 44 LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type); in get_bootloader_message() 54 if (strcmp(v->fs_type, "mtd") == 0) { in set_bootloader_message() 56 } else if (strcmp(v->fs_type, "emmc") == 0) { in set_bootloader_message() 59 LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type); in set_bootloader_message()
|
D | common.h | 94 const char* fs_type; // "yaffs2" or "ext4" or "vfat" member
|
/bootable/recovery/updater/ |
D | install.c | 55 char* fs_type; in MountFn() local 59 if (ReadArgs(state, argv, 4, &fs_type, &partition_type, in MountFn() 64 if (strlen(fs_type) == 0) { in MountFn() 94 if (mtd_mount_partition(mtd, mount_point, fs_type, 0 /* rw */) != 0) { in MountFn() 102 if (mount(location, mount_point, fs_type, in MountFn() 113 free(fs_type); in MountFn() 192 char* fs_type; in FormatFn() local 196 if (ReadArgs(state, argv, 4, &fs_type, &partition_type, &location, &fs_size) < 0) { in FormatFn() 200 if (strlen(fs_type) == 0) { in FormatFn() 242 } else if (strcmp(fs_type, "ext4") == 0) { in FormatFn() [all …]
|