aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_std
Commit message (Collapse)AuthorAgeFilesLines
* Disconnect kernfs from the build and remove all references to it from theDag-Erling Smørgrav2003-02-102-8/+1
| | | | | | | documentation. Notes: svn path=/stable/4/; revision=110641
* MFC: Reduce gratuitous diffs to -CURRENT.Ruslan Ermilov2001-12-141-3/+5
| | | | Notes: svn path=/stable/4/; revision=87885
* Reduce diff to -current.David E. O'Brien2001-08-011-1/+2
| | | | Notes: svn path=/stable/4/; revision=80871
* MFC: include missing header files.Dima Dorfman2001-07-301-0/+1
| | | | Notes: svn path=/stable/4/; revision=80623
* Removing old, broken DEVFS from -stable phase one: remove supportDima Dorfman2001-07-242-11/+2
| | | | | | | | | | | | code, everything under #ifdef DEVFS (and thus opt_devfs.h), and most references to the DEVFS routines. Code that really couldn't be reached was left alone. Removal of the actual DEVFS implementation will come later. Approved by: -stable Notes: svn path=/stable/4/; revision=80267
* MFC: remove whitespace at EOL.Dima Dorfman2001-07-221-6/+6
| | | | Notes: svn path=/stable/4/; revision=80142
* MFC: MAN[1-9] -> MAN.Ruslan Ermilov2001-04-251-1/+1
| | | | Notes: svn path=/stable/4/; revision=75953
* MFC: removed history info from the .Os FreeBSD call.Ruslan Ermilov2000-12-141-1/+1
| | | | Notes: svn path=/stable/4/; revision=70016
* MFC: recent mdoc(7) fixes.Ruslan Ermilov2000-12-081-2/+2
| | | | Notes: svn path=/stable/4/; revision=69765
* MFC: mention linprocfs.Dag-Erling Smørgrav2000-03-251-3/+11
| | | | Notes: svn path=/stable/4/; revision=58562
* MFC: mount_linprocfs.Dag-Erling Smørgrav2000-03-251-1/+4
| | | | Notes: svn path=/stable/4/; revision=58560
* mount* fixes from Martin Blapp <mb@imp.ch>:Poul-Henning Kamp1999-10-091-1/+5
| | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=52055
* $Id$ -> $FreeBSD$Peter Wemm1999-08-282-2/+2
| | | | Notes: svn path=/head/; revision=50476
* Correct use of .Nm. Remove unused #includes.Philippe Charnier1998-07-152-8/+6
| | | | Notes: svn path=/head/; revision=37658
* Removed definition of _NEW_VFSCONF. The new vfsconf interface is nowBruce Evans1998-01-201-1/+0
| | | | | | | the default. Notes: svn path=/head/; revision=32645
* compare return value from getopt against -1 rather than EOF, per the finalWarner Losh1997-03-291-2/+2
| | | | | | | posix standard on the topic. Notes: svn path=/head/; revision=24359
* Update to compile under Lite2Peter Wemm1997-03-112-9/+10
| | | | Notes: svn path=/head/; revision=23679
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-222-2/+2
| | | | Notes: svn path=/head/; revision=22990
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-142-2/+2
| | | | | | | | | | | 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. Notes: svn path=/head/; revision=21673
* comma typosWolfram Schneider1996-12-231-6/+6
| | | | Notes: svn path=/head/; revision=20888
* Now that all of the "standard" file system mount commandsMike Pritchard1996-12-146-399/+44
| | | | | | | | | | | | | 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. Notes: svn path=/head/; revision=20483
* Refer the reader to devfs(5).Mike Pritchard1996-12-141-8/+0
| | | | Notes: svn path=/head/; revision=20481
* Refer the reader to fdesc(5) for detailed info on the fdesc filesystem.Mike Pritchard1996-12-141-85/+11
| | | | Notes: svn path=/head/; revision=20470
* Remove the descriptions of the files in /kern and referMike Pritchard1996-12-141-40/+8
| | | | | | | | the reader to kernfs(5) so that the information only has to be maintained in one place. Notes: svn path=/head/; revision=20467
* Remove the detailed description of the files in /procMike Pritchard1996-12-141-156/+11
| | | | | | | | | and instead refer the reader to procfs(5) so that the information does not need to be maintained in two places. Notes: svn path=/head/; revision=20461
* Don't use __dead or __pure in user code. They were obfuscationsBruce Evans1996-09-141-2/+2
| | | | | | | | | for gcc >= 2.5 and no-ops for gcc >= 2.6. Converted to use __dead2 or __pure2 where it wasn't already done, except in math.h where use of __pure was mostly wrong. Notes: svn path=/head/; revision=18286
* Use the .Bx macro where appropriate.Mike Pritchard1996-08-233-3/+6
| | | | Notes: svn path=/head/; revision=17797
* Use the .Fx macro where appropriate.Mike Pritchard1996-08-232-3/+3
| | | | Notes: svn path=/head/; revision=17786
* Accept mount(8)'s calling convention of passing just the filesystem typeGarrett Wollman1996-05-142-9/+23
| | | | | | | as argv[0]. Notes: svn path=/head/; revision=15774
* Get rid of the last vestiges of the old MOUNT_* constants in theGarrett Wollman1996-05-137-0/+917
mount_* programs. While we're at it, collapse the four now-identical mount programs for devfs, fdesc, kernfs, and procfs into links to a new mount_std(8) which can mount any really generic filesystem such as these when called with the appropriate argv[0]. Also, convert the mount programs to use sysexits.h. Notes: svn path=/head/; revision=15770