• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/util-linux/

Lines Matching refs:mount

3  * Mini mount implementation for busybox
12 /* Design notes: There is no spec for mount. Remind me to write one.
16 mount_main() can loop through /etc/fstab for mount -a
18 mount_it_now() does the actual mount.
54 // "user" option (from mount manpage):
62 /* Standard mount options (from -o options or --options), with corresponding
123 /* Append mount options to string */
177 // If unrecognized not NULL, append unrecognized mount options */
249 // Perform actual mount of specific filesystem at specific location.
259 rc = mount(mp->mnt_fsname, mp->mnt_dir, mp->mnt_type,
273 /* If the mount was successful, and we're maintaining an old-style
301 if (!mp->mnt_type || !*mp->mnt_type) { /* bind mount */
323 * Linux NFS mount
335 * Implemented the "bg", "fg" and "retry" mount options for NFS.
479 * We want to be able to compile mount on old kernels in such a way
647 * in case of an unexpected nfs mount version (instead of
986 bb_error_msg("unknown nfs mount parameter: %s=%d", opt, val);
1046 bb_error_msg("unknown nfs mount option: %s%s", val ? "" : "no", opt);
1082 * If the previous mount operation on the same host was
1083 * backgrounded, and the "bg" for this mount is also set,
1094 /* create mount daemon client */
1095 /* See if the nfs host = mount host. */
1118 * The following loop implements the mount retries. When the mount
1122 * The case where the mount point is not present and the "bg"
1156 /* contact the mount daemon via TCP */
1185 /* try to mount hostname:pathname */
1318 /* We must wait until mount directory is available */
1336 do_mount: /* perform actual mount */
1448 // mount symlink_to_file_or_blkdev dir)
1473 * to the actual mount. */
1478 // Loop through filesystem types until mount succeeds
1482 * done here so that during "mount -a", mounts after /proc shows up
1498 // If mount failed, clean up loop file (if any).
1618 rc = mount("", argv[0], "", i, "");
1672 /* If we're trying to mount something specific and this isn't it,
1701 // No, mount -a won't mount anything,