Searched refs:fstype (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-11-stable/etc/rc.d/
H A Dmountcritremote63 fstype=${i%:*}
66 [ "${fstype}" = "nfs" ] && continue
68 case "`mount -d -a -t ${fstype}`" in
69 *mount_${fstype}*)
72 mount -a -t ${fstype}
H A Dmountcritlocal35 fstype=${i%:*}
36 mount_excludes="${mount_excludes}${fstype},"
/freebsd-11-stable/libexec/makewhatis.local/
H A Dmakewhatis.local.sh52 localdirs=`find -H $dirs -fstype local \! -fstype rdonly -type d -prune -print`
/freebsd-11-stable/etc/periodic/daily/
H A D100.clean-disks44 rc=$(find / \( ! -fstype local -o -fstype rdonly \) -prune -o \
/freebsd-11-stable/usr.sbin/makefs/
H A Dmakefs.c97 fstype_t *fstype; local
107 if ((fstype = get_fstype(DEFAULT_FSTYPE)) == NULL)
115 if (fstype->prepare_options)
116 fstype->prepare_options(&fsoptions);
145 usage(fstype, &fsoptions);
213 if (! fstype->parse_options(p, &fsoptions))
214 usage(fstype, &fsoptions);
242 if (fstype->cleanup_options)
243 fstype->cleanup_options(&fsoptions);
245 if ((fstype
474 usage(fstype_t *fstype, fsinfo_t *fsoptions) argument
[all...]
/freebsd-11-stable/usr.bin/makewhatis/
H A Dmakewhatis.local.sh52 localdirs=`find -H $dirs -fstype local -type d -prune -print`
/freebsd-11-stable/contrib/amd/amd/
H A Dsun_map.h68 char *fstype; /* filesystem type */ member in struct:sun_mountpt
77 char *fstype; /* filesystem type */ member in struct:sun_entry
H A Dsun_map.c381 /* set fstype NFS */
426 /* set fstype CDFS */
552 if (s_entry->fstype != NULL) {
553 if (NSTREQ(s_entry->fstype, SUN_NFS_TYPE, strlen(SUN_NFS_TYPE))) {
558 else if (NSTREQ(s_entry->fstype, SUN_HSFS_TYPE, strlen(SUN_HSFS_TYPE))) {
566 else if (NSTREQ(s_entry->fstype, SUN_AUTOFS_TYPE, strlen(SUN_AUTOFS_TYPE))) {
568 plog(XLOG_ERROR, "Sun fstype %s is currently not supported by Amd.",
569 s_entry->fstype);
573 else if (NSTREQ(s_entry->fstype, SUN_CACHEFS_TYPE, strlen(SUN_CACHEFS_TYPE))) {
575 plog(XLOG_ERROR, "Sun fstype
[all...]
/freebsd-11-stable/sbin/mount/
H A Dmount_fs.c70 "usage: mount [-t fstype] [-o options] target_fs mount_point\n");
82 char fstype[32]; local
86 strlcpy(fstype, vfstype, sizeof(fstype));
126 build_iovec(&iov, &iovlen, "fstype", fstype, (size_t)-1);
/freebsd-11-stable/cddl/compat/opensolaris/misc/
H A Dzmount.c73 zmount(const char *spec, const char *dir, int mflag, char *fstype, argument
83 assert(fstype != NULL);
84 assert(strcmp(fstype, MNTTYPE_ZFS) == 0);
97 build_iovec(&iov, &iovlen, "fstype", fstype, (size_t)-1);
/freebsd-11-stable/usr.bin/locate/locate/
H A Dupdatedb.sh72 for fstype in $FILESYSTEMS
74 excludes="$excludes $or -fstype $fstype"
/freebsd-11-stable/etc/periodic/security/
H A D110.neggrpperm53 n=$(find -sx $MP /dev/null \( ! -fstype local \) -prune -o -type f \
H A D100.chksetuid55 find -sx $MP /dev/null \( ! -fstype local \) -prune -o -type f \
/freebsd-11-stable/usr.sbin/bsdinstall/partedit/
H A Dpartedit.h59 int part_wizard(const char *fstype);
61 int wizard_makeparts(struct gmesh *mesh, const char *disk, const char *fstype,
H A Dpart_wizard.c54 const char *fstype; local
59 fstype = fsreq;
61 fstype = "ufs";
84 error = wizard_makeparts(&mesh, schemeroot, fstype, 1);
300 wizard_makeparts(struct gmesh *mesh, const char *disk, const char *fstype, argument
313 if (strcmp(fstype, "zfs") == 0) {
/freebsd-11-stable/share/examples/hast/
H A Ducarp_down.sh35 fstype="UFS"
36 # ZFS pool name. Required only when fstype == ZFS.
38 # File system mount point. Required only when fstype == UFS.
41 # Required only when fstype == UFS.
61 case "${fstype}" in
H A Ducarp_up.sh35 fstype="UFS"
36 # ZFS pool name. Required only when fstype == ZFS.
38 # File system mount point. Required only when fstype == UFS.
74 case "${fstype}" in
/freebsd-11-stable/etc/periodic/weekly/
H A D340.noid49 \( $exclude ! -fstype local -prune -or -name \* \) -and \
/freebsd-11-stable/sys/geom/part/
H A Dg_part_bsd64.c117 uint8_t fstype; member in struct:g_part_bsd64_entry
188 uint8_t fstype; member in struct:bsd64_uuid_alias
229 entry->fstype = lt;
241 /* Prefer fstype for known uuids */
243 entry->fstype = uap->fstype;
248 entry->fstype = FS_OTHER;
256 entry->fstype = uap->fstype;
264 entry->fstype
[all...]
/freebsd-11-stable/usr.sbin/autofs/
H A Dautomountd.c91 * Remove "fstype=whatever" from optionsp and return the "whatever" part.
181 char *key, *options, *fstype, *nobrowse, *retrycnt, *tmp; local
324 * Figure out fstype.
326 fstype = pick_option("fstype=", &options);
327 if (fstype == NULL) {
328 log_debugx("fstype not specified in options; "
330 fstype = checked_strdup("nfs");
333 if (strcmp(fstype, "nfs") == 0) {
351 f = auto_popen("mount", "-t", fstype, "
[all...]
/freebsd-11-stable/sbin/mount_udf/
H A Dmount_udf.c77 char fstype[] = "udf"; local
124 build_iovec(&iov, &iovlen, "fstype", fstype, (size_t)-1);
/freebsd-11-stable/bin/df/
H A Ddf.c79 int fstype; member in struct:maxwidths
127 const char *fstype; local
140 fstype = "ufs";
214 fstype = optarg;
276 build_iovec_argf(&iov, &iovlen, "fstype", "%s",
277 fstype);
485 mwp->fstype = imax(mwp->fstype, (int)strlen("Type"));
506 xo_emit(" {T:/%-*s}", mwp->fstype, "Type");
530 xo_emit(" {:type/%-*s}", mwp->fstype, sfs
[all...]
/freebsd-11-stable/sys/kern/
H A Dvfs_init.c137 vfs_byname_kld(const char *fstype, struct thread *td, int *error) argument
142 vfsp = vfs_byname(fstype);
147 *error = kern_kldload(td, fstype, &fileid);
155 vfsp = vfs_byname(fstype);
/freebsd-11-stable/sbin/mount_cd9660/
H A Dmount_cd9660.c90 char fstype[] = "cd9660"; local
176 build_iovec(&iov, &iovlen, "fstype", fstype, (size_t)-1);
/freebsd-11-stable/sbin/mount_unionfs/
H A Dmount_unionfs.c135 char fstype[] = "unionfs"; local
187 build_iovec(&iov, &iovlen, "fstype", fstype, (size_t)-1);

Completed in 191 milliseconds

12