| /freebsd-13-stable/usr.sbin/bsdinstall/partedit/ |
| HD | partedit.c | 157 if (md->fstab != NULL) { in main() 158 free(md->fstab->fs_spec); in main() 159 free(md->fstab->fs_file); in main() 160 free(md->fstab->fs_vfstype); in main() 161 free(md->fstab->fs_mntops); in main() 162 free(md->fstab->fs_type); in main() 163 free(md->fstab); in main() 254 if (md->fstab != NULL) { in delete_part_metadata() 255 free(md->fstab->fs_spec); in delete_part_metadata() 256 free(md->fstab->fs_file); in delete_part_metadata() [all …]
|
| HD | gpart_ops.c | 615 if (md->fstab != NULL) in gpart_edit() 616 items[2].text = md->fstab->fs_file; in gpart_edit() 732 if (md->fstab != NULL) { in set_default_part_metadata() 733 free(md->fstab->fs_spec); in set_default_part_metadata() 734 free(md->fstab->fs_file); in set_default_part_metadata() 735 free(md->fstab->fs_vfstype); in set_default_part_metadata() 736 free(md->fstab->fs_mntops); in set_default_part_metadata() 737 free(md->fstab->fs_type); in set_default_part_metadata() 738 free(md->fstab); in set_default_part_metadata() 739 md->fstab = NULL; in set_default_part_metadata() [all …]
|
| HD | partedit.h | 46 struct fstab *fstab; /* fstab data for this partition */ member
|
| /freebsd-13-stable/libexec/rc/rc.d/ |
| HD | gbde | 33 fstab="/etc/fstab" 36 fstab=$(mktemp /tmp/mtab.XXXXXX) 37 mount -p >${fstab} 68 done <${fstab} 72 rm -f ${fstab}
|
| HD | growfs_fstab | 50 ' < /etc/fstab 52 printf "/dev/label/growfs_swap\tnone\t\tswap\tsw\t\t0\t0\n" >>/etc/fstab
|
| /freebsd-13-stable/include/ |
| HD | fstab.h | 57 struct fstab { struct 70 struct fstab *getfsent(void); argument 71 struct fstab *getfsspec(const char *); 72 struct fstab *getfsfile(const char *);
|
| /freebsd-13-stable/tools/tools/nanobsd/rescue/ |
| HD | common | 81 echo "/dev/ufs/${NANO_LABEL}s1a / ufs ro,noatime 0 0" > etc/fstab 82 echo "/dev/${NANO_DRIVE}s3 /cfg ufs rw,noauto 2 2" >> etc/fstab 83 echo "tmpfs /boot/zfs tmpfs rw,size=1048576,mode=777 0 0" >> etc/fstab 84 echo "ports:/usr/ports /usr/ports nfs rw,noauto,noatime,bg,soft,intr,nfsv3 0 0" >> etc/fstab 85 # echo "/dev/ad1s1a /scratch ufs rw,noauto,noatime 0 0" >> etc/fstab 109 echo "/dev/iso9660/${BIGLABEL} / cd9660 ro,noatime 0 0" > etc/fstab 110 echo "tmpfs /boot/zfs tmpfs rw,size=1048576,mode=777 0 0" >> etc/fstab 111 echo "ports:/usr/ports /usr/ports nfs rw,noauto,noatime,bg,soft,intr,nfsv3 0 0" >> etc/fstab 112 # echo "/dev/ad1s1a /scratch ufs rw,noauto,noatime 0 0" >> etc/fstab
|
| HD | merge.sh | 22 sed -i "" -e 's/rescues1/rescues2/' ${MNT}/conf/base/etc/fstab 23 sed -i "" -e 's/rescues1/rescues2/' ${MNT}/etc/fstab
|
| /freebsd-13-stable/sbin/dump/ |
| HD | optr.c | 286 struct fstab * 287 allocfsent(const struct fstab *fs) in allocfsent() 289 struct fstab *new; in allocfsent() 291 new = (struct fstab *)malloc(sizeof (*fs)); in allocfsent() 304 struct fstab *pf_fstab; 312 struct fstab *fs; in dump_getfstab() 341 struct fstab * 345 struct fstab *fs; in fstabsearch() 375 struct fstab *dt; in lastdump()
|
| /freebsd-13-stable/tools/tools/nanobsd/pcengines/ |
| HD | common.conf | 67 echo "fs:/usr/ports /usr/ports nfs rw,noauto,noatime,bg,soft,intr,nfsv3 0 0" >> etc/fstab 68 echo "fs:/mnt/Backup /mnt/Backup nfs rw,noauto,noatime,bg,soft,intr,nfsv3 0 0" >> etc/fstab 69 echo "fs:/mnt/Ablage /mnt/Ablage nfs rw,noauto,noatime,bg,soft,intr,nfsv3 0 0" >> etc/fstab 70 echo "/dev/ad1s1a /z/scratch ufs rw,noauto,noatime 0 0" >> etc/fstab
|
| /freebsd-13-stable/sbin/fsck/ |
| HD | fsutil.h | 29 struct fstab; 30 int checkfstab(int, int (*)(struct fstab *), 32 int getfsopt(struct fstab *, const char *);
|
| /freebsd-13-stable/release/tools/ |
| HD | arm.subr | 200 > ${CHROOTDIR}/${DESTDIR}/etc/fstab 203 >> ${CHROOTDIR}/${DESTDIR}/etc/fstab 205 >> ${CHROOTDIR}/${DESTDIR}/etc/fstab 209 >> ${CHROOTDIR}/${DESTDIR}/etc/fstab 211 >> ${CHROOTDIR}/${DESTDIR}/etc/fstab 214 >> ${CHROOTDIR}/${DESTDIR}/etc/fstab
|
| HD | vmimage.subr | 72 > ${DESTDIR}/etc/fstab 74 >> ${DESTDIR}/etc/fstab 77 >> ${DESTDIR}/etc/fstab 240 >> ${DESTDIR}/etc/fstab
|
| /freebsd-13-stable/usr.sbin/autofs/autofs/ |
| HD | special_noauto | 6 sed 's/#.*//' /etc/fstab | awk '$4 ~ /noauto/ { print $2 }' 14 sed 's/#.*//' /etc/fstab | awk '
|
| /freebsd-13-stable/usr.sbin/quotaon/ |
| HD | quotaon.c | 70 static int quotaonoff(struct fstab *fs, int, int); 76 struct fstab *fs; in main() 153 quotaonoff(struct fstab *fs, int offmode, int type) in quotaonoff()
|
| /freebsd-13-stable/release/i386/ |
| HD | make-memstick.sh | 32 echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab 35 rm ${1}/etc/fstab
|
| /freebsd-13-stable/lib/libc/gen/ |
| HD | fstab.c | 50 static struct fstab _fs_fstab; 221 struct fstab * 230 struct fstab * 241 struct fstab *
|
| /freebsd-13-stable/release/amd64/ |
| HD | make-memstick.sh | 35 echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab 38 rm ${1}/etc/fstab
|
| /freebsd-13-stable/release/riscv/ |
| HD | make-memstick.sh | 35 echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab 38 rm ${1}/etc/fstab
|
| /freebsd-13-stable/release/arm64/ |
| HD | make-memstick.sh | 35 echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab 38 rm ${1}/etc/fstab
|
| /freebsd-13-stable/tools/tools/nanobsd/pcengines/Files/root/ |
| HD | updatep2 | 56 sed -i "" "s/${NANO_DRIVE}s1/${NANO_DRIVE}s2/" /mnt/conf/base/etc/fstab 57 sed -i "" "s/${NANO_DRIVE}s1/${NANO_DRIVE}s2/" /mnt/etc/fstab
|
| /freebsd-13-stable/tools/tools/nanobsd/Files/root/ |
| HD | updatep2 | 56 sed -i "" "s/${NANO_DRIVE}s1/${NANO_DRIVE}s2/" /mnt/conf/base/etc/fstab 57 sed -i "" "s/${NANO_DRIVE}s1/${NANO_DRIVE}s2/" /mnt/etc/fstab
|
| /freebsd-13-stable/tests/sys/cddl/zfs/tests/cli_root/zpool_create/ |
| HD | zpool_create.kshlib | 99 typeset fstab="/etc/fstab" 105 $CAT $fstab | $GREP "^/dev" >$tmpfile
|
| /freebsd-13-stable/tools/boot/ |
| HD | rootgen.sh | 43 cat > ${src}/etc/fstab <<EOF 50 rm -f ${src}/etc/fstab 57 cat > ${src}/etc/fstab <<EOF 65 rm -f ${src}/etc/fstab 72 cat > ${src}/etc/fstab <<EOF 83 rm -f ${src}/etc/fstab 208 cat > ${src}/etc/fstab <<EOF 214 rm -f ${src}/etc/fstab 221 cat > ${src}/etc/fstab <<EOF 228 rm -f ${src}/etc/fstab [all …]
|
| /freebsd-13-stable/share/examples/jails/ |
| HD | rc.conf.jails | 41 #jail_{name}_mount_enable="YES" # mount /etc/fstab.{name} 54 #jail_{name}_mount_enable="YES" # mount /etc/fstab.{name} 71 #jail_XXX_mount_enable="YES" # mount /etc/fstab.XXX
|