Jaakko Heinonen
d325001438
Change checkpath() to not exit on error. This is a prerequisite for
...
fixing the mount(8) "failok" option.
PR: 163668
Reviewed by: Garrett Cooper, delphij (previous version)
2012-01-16 19:34:21 +00:00
Ulrich Spörlein
0afc94c17a
mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to the
...
bottom of the manpages and order them consistently.
GNU groff doesn't care about the ordering, and doesn't even mention
CAVEATS and SECURITY CONSIDERATIONS as common sections and where to put
them.
Found by: mdocml lint run
Reviewed by: ru
2010-05-13 12:07:55 +00:00
Ulrich Spörlein
2b6974bf61
Bump WARNS where possible.
...
Checked by: make universe
Approved by: ed (co-mentor)
2010-02-15 14:07:40 +00:00
Philippe Charnier
d402d62c89
Reduce the number of errors under WARNS=6
2006-09-13 04:50:44 +00:00
Ceri Davies
352e01f17b
Slight grammar fix.
2006-05-18 15:26:27 +00:00
David Xu
4b609e4caa
Remove mqueuefs from LINKS, it is no longer needed for nmount interface.
...
Noticed by: rodrigc
2005-12-02 04:25:54 +00:00
David Xu
95b5832940
Change filesystem name from mqueue to mqueuefs for style consitent,
...
sort LINKS list.
2005-11-27 08:32:41 +00:00
David Xu
5958a74924
Support mounting POSIX message queue filesystem.
2005-11-26 12:53:18 +00:00
Xin LI
46b7a14ba4
Use MOPT_END in favor of MOPT_NULL, which better describes the purporse
...
of the macro.
2005-06-10 09:51:43 +00:00
Xin LI
73ac45052f
Add a handy macro to represent null mount option, MOPT_NULL, and make
...
use of the macro in sbin/mount*'s, by replacing:
mopts[] = {
MOPT_STDOPTS,
{ NULL }
}
With:
mopts[] = {
MOPT_STDOPTS,
MOPT_NULL
}
This change will help to reduce the situation that we don't explicitly
initialize "struct mntopt"'s. It should not contribute to any
functional/logical changes as far as I can tell.
2005-06-01 09:39:36 +00:00
Ruslan Ermilov
5f04702815
Fix the mount(8) status reporting, now that MNT_NODEV is a no-op (zero).
...
Asked to commit by: phk
2004-11-29 09:35:01 +00:00
Ruslan Ermilov
9806e23132
Mechanically kill hard sentence breaks.
2004-07-02 21:45:06 +00:00
Mark Murray
4c723140a4
Remove advertising clause from University of California Regent's license,
...
per letter dated July 22, 1999.
Approved by: core, imp
2004-04-09 19:58:40 +00:00
Johan Karlsson
604d24db95
style.Makefile(5):
...
Use WARNS?= instead of WARNS=.
2004-02-23 20:25:27 +00:00
Sean Chittenden
c80f12d0af
Reduce fstab(5)/mount(8) confusion by changing the man pages to say "ro"
...
instead of "rdonly". "rdonly" works for mount(8) and mount_std(8) but
not from /etc/fstab, whereas "ro" works for all mount_*(8) commands.
2003-10-22 18:25:49 +00:00
John Baldwin
8bc90fb220
Take sizeof() the right string for fspath's iovec. The old string was the
...
same size so this doesn't fix a bug, but it makes it cleaner.
2002-11-05 20:06:01 +00:00
Tom Rhodes
ce66ddb763
s/filesystem/file system/g as discussed on -developers
2002-08-21 18:11:48 +00:00
Maxime Henrion
5abe205798
Update manpage to match the code, we don't use
...
vfsload() here anymore.
2002-08-11 15:18:41 +00:00
Maxime Henrion
526ba6d32b
Now that the kernel is able to load modules itself,
...
remove all the code which was trying to do so.
This code was nasty in several ways, it was hiding
the kernel bug where the kernel was unable to properly
load a module, and it was quitting if it wasn't able
to load the module. The consequence is that an ABI
breakage of the vfsconf API would have broken *every*
mount utility.
2002-08-03 16:03:21 +00:00
Philippe Charnier
e1205e80e5
The .Nm utility
2002-07-06 19:34:18 +00:00
Tom Rhodes
3468b317cb
more file system > filesystem
2002-05-16 04:10:46 +00:00
Maxime Henrion
d9219dcc1b
Fix the fallback to mount(2) with RELENG_4 kernels and -CURRENT
...
utilities by catching SIGSYS.
Submitted by: bde
2002-05-05 10:08:04 +00:00
Maxime Henrion
373f12f6e3
Swap the order of mount and nmount calls. We now call nmount
...
first, since all the consumers of mount_std in the tree have
been converted to nmount.
2002-05-02 20:52:04 +00:00
Maxime Henrion
c31e07fb1a
Add code to try the nmount(2) syscall when mount(2) failed with
...
EOPNOTSUPP. This will make things less painful when I will commit
the conversion of devfs, fdescfs and pseudofs to nmount.
Reviewed by: phk
2002-04-07 13:28:18 +00:00
Warner Losh
854299908c
o __P removed
...
o main prototype removed
2002-03-21 13:14:21 +00:00
David E. O'Brien
2d68bf45bf
Default to WARNS=2.
...
Binary builds that cannot handle this must explicitly set WARNS=0.
Reviewed by: mike
2001-12-04 02:19:58 +00:00
Dima Dorfman
7ebcc426ef
Remove whitespace at EOL.
2001-07-15 07:53:42 +00:00
Dima Dorfman
cafefe8c1b
Include missing header files which define functions for which gcc has
...
builtins (e.g., exit, strcmp).
2001-06-24 23:04:23 +00:00
Ruslan Ermilov
6ad10804f7
Rename (after a repo-copy) some mount(8) programs:
...
mount_fdesc -> mount_fdescfs
mount_null -> mount_nullfs
mount_portal -> mount_portalfs
mount_umap -> mount_umapfs
mount_union -> mount_unionfs
2001-05-23 14:58:19 +00:00
Ruslan Ermilov
0a5779d45b
- Backout botched attempt to introduce MANSECT feature.
...
- MAN[1-9] -> MAN.
2001-03-26 14:33:27 +00:00
Ruslan Ermilov
fe655281c5
Set the default manual section for sbin/ to 8.
2001-03-20 18:13:31 +00:00
Dag-Erling Smørgrav
c4b267dc7e
Retire kernfs (userland part).
2000-12-28 12:59:57 +00:00
Ruslan Ermilov
ed40311694
mdoc(7) police: removed history info from the .Os FreeBSD call.
2000-12-14 11:52:05 +00:00
Ruslan Ermilov
7c7fb079b9
mdoc(7) police: use the new features of the Nm macro.
2000-11-20 16:52:27 +00:00
Dag-Erling Smørgrav
98d83e38b9
Mention linprocfs.
2000-03-25 13:46:16 +00:00
Dag-Erling Smørgrav
57936c7a07
Add mount_linprocfs.
2000-03-25 13:27:47 +00:00
Poul-Henning Kamp
73dd316734
mount* fixes from Martin Blapp <mb@imp.ch>:
...
Made mount more userfriendly (bad slashes are now filtered out)
and we remove in mount_nfs trailing slashes if there are any.
Fixed mount_xxx binarys to resolve with realpath(3)
the mountpoint.
Translate the deprecated nfs-syntax with '@' to ':' .
The ':' syntax has now precedence, but '@' still works.
Notify the user that the '@' syntax should not be used.
PR: 7846
PR: 13692
Submitted by: Martin Blapp <mb@imp.ch>
Reviewed by: phk
1999-10-09 11:54:14 +00:00
Peter Wemm
7f3dea244c
$Id$ -> $FreeBSD$
1999-08-28 00:22:10 +00:00
Philippe Charnier
fdb8d8965b
Correct use of .Nm. Remove unused #includes.
1998-07-15 06:08:47 +00:00
Bruce Evans
87f01287d2
Removed definition of _NEW_VFSCONF. The new vfsconf interface is now
...
the default.
1998-01-20 10:40:18 +00:00
Warner Losh
8d64695c7c
compare return value from getopt against -1 rather than EOF, per the final
...
posix standard on the topic.
1997-03-29 03:33:12 +00:00
Peter Wemm
b94d6bf4d7
Update to compile under Lite2
1997-03-11 12:38:16 +00:00
Peter Wemm
c0ec1f37ef
Revert $FreeBSD$ to $Id$
1997-02-22 14:40:44 +00:00
Jordan K. Hubbard
1130b656e5
Make the long-awaited change from $Id$ to $FreeBSD$
...
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.
Boy, I'm glad we're not using sup anymore. This update would have been
insane otherwise.
1997-01-14 07:20:47 +00:00
Wolfram Schneider
13608f6661
comma typos
1996-12-23 23:09:55 +00:00
Mike Pritchard
d3bb9749e6
Now that all of the "standard" file system mount commands
...
refer the reader to the detailed information in section 5,
remove the mount_* man pages for those file system. mount_std(8)
to cover all of the file systems it is currently being used
to mount.
mount_{devfs, fdesc, kernfs, procfs}.8 are now
MLINKS to mount_std.
1996-12-14 22:58:37 +00:00
Mike Pritchard
84c0c5c16a
Refer the reader to devfs(5).
1996-12-14 22:49:44 +00:00
Mike Pritchard
b755bb110f
Refer the reader to fdesc(5) for detailed info on the fdesc filesystem.
1996-12-14 22:18:08 +00:00
Mike Pritchard
b09aedddeb
Remove the descriptions of the files in /kern and refer
...
the reader to kernfs(5) so that the information only
has to be maintained in one place.
1996-12-14 21:55:37 +00:00
Mike Pritchard
0d540c71bd
Remove the detailed description of the files in /proc
...
and instead refer the reader to procfs(5) so that
the information does not need to be maintained in
two places.
1996-12-14 20:14:15 +00:00