Home | History | Annotate | Download | only in misc

Lines Matching defs:ext_type

975 	const char	*ext_type = 0;
992 ext_type = fs_type;
994 ext_type = "ext2";
996 ext_type = "ext3";
998 ext_type = strrchr(progname, '/');
999 if (ext_type)
1000 ext_type++;
1002 ext_type = progname;
1004 if (!strncmp(ext_type, "mkfs.", 5)) {
1005 ext_type += 5;
1006 if (ext_type[0] == 0)
1007 ext_type = 0;
1009 ext_type = 0;
1012 if (!ext_type) {
1015 ext_type = profile_type;
1016 if (!strcmp(ext_type, "ext2") && (journal_size != 0))
1017 ext_type = "ext3";
1021 if (!profile_has_subsection(profile, "fs_types", ext_type) &&
1022 strcmp(ext_type, "ext2")) {
1024 "%s filesystem type.\n"), ext_type);
1025 if (!strcmp(ext_type, "ext3") || !strcmp(ext_type, "ext4") ||
1026 !strcmp(ext_type, "ext4dev")) {
1057 if (ext_type)
1058 push_string(&list, ext_type);