Home | History | Annotate | Download | only in misc

Lines Matching defs:ext_type

941 	const char	*ext_type = 0;
958 ext_type = fs_type;
960 ext_type = "ext2";
962 ext_type = "ext3";
964 ext_type = strrchr(progname, '/');
965 if (ext_type)
966 ext_type++;
968 ext_type = progname;
970 if (!strncmp(ext_type, "mkfs.", 5)) {
971 ext_type += 5;
972 if (ext_type[0] == 0)
973 ext_type = 0;
975 ext_type = 0;
978 if (!ext_type) {
981 ext_type = profile_type;
982 if (!strcmp(ext_type, "ext2") && (journal_size != 0))
983 ext_type = "ext3";
986 if (!strcmp(ext_type, "ext3") || !strcmp(ext_type, "ext4") ||
987 !strcmp(ext_type, "ext4dev")) {
988 profile_get_string(profile, "fs_types", ext_type, "features",
993 ext_type);
1021 if (ext_type)
1022 push_string(&list, ext_type);