aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_umapfs
Commit message (Collapse)AuthorAgeFilesLines
* Actually rename FDESC, PORTAL, UMAP and UNION file systems.Ruslan Ermilov2001-05-241-5/+5
| | | | | | | OK'ed by: bp Notes: svn path=/head/; revision=77133
* Rename (after a repo-copy) some mount(8) programs:Ruslan Ermilov2001-05-233-9/+9
| | | | | | | | | | | mount_fdesc -> mount_fdescfs mount_null -> mount_nullfs mount_portal -> mount_portalfs mount_umap -> mount_umapfs mount_union -> mount_unionfs Notes: svn path=/head/; revision=77042
* - FDESC, FIFO, NULL, PORTAL, PROC, UMAP and UNION fileRuslan Ermilov2001-05-232-2/+2
| | | | | | | | | | | | | | | | | | systems were repo-copied from sys/miscfs to sys/fs. - Renamed the following file systems and their modules: fdesc -> fdescfs, portal -> portalfs, union -> unionfs. - Renamed corresponding kernel options: FDESC -> FDESCFS, PORTAL -> PORTALFS, UNION -> UNIONFS. - Install header files for the above file systems. - Removed bogus -I${.CURDIR}/../../sys CFLAGS from userland Makefiles. Notes: svn path=/head/; revision=77031
* - Backout botched attempt to introduce MANSECT feature.Ruslan Ermilov2001-03-261-0/+1
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74815
* Set the default manual section for sbin/ to 8.Ruslan Ermilov2001-03-201-1/+1
| | | | Notes: svn path=/head/; revision=74531
* Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-181-3/+1
| | | | Notes: svn path=/head/; revision=70152
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68960
* mount* fixes from Martin Blapp <mb@imp.ch>:Poul-Henning Kamp1999-10-091-3/+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
* User reports that using mount_null destroyed his filesystem, I replyJordan K. Hubbard1998-12-221-1/+11
| | | | | | | | that nullfs really doesn't work, he askes why this isn't noted for the "dangerous" filesystems, I go "hmmm." Notes: svn path=/head/; revision=42003
* Correct use of .Nm. Use .Ar when appropriate. Remove unused #includes. Typos.Philippe Charnier1998-07-153-38/+36
| | | | Notes: svn path=/head/; revision=37660
* Fixed printf format errors.Bruce Evans1998-06-281-2/+2
| | | | Notes: svn path=/head/; revision=37238
* The SYNOPSYS of mount_umap(8) saysPoul-Henning Kamp1998-05-131-2/+2
| | | | | | | | | | | | | | | mount_umap [-o options] target mount-point uid-mapfile gid-mapfile This should read mount_umap [-o options] -u uid-mapfile -g gid-mapfile target mount-point PR: 6586 Reviewed by: phk Submitted by: Amakawa Shuhei amakawa@hoh.t.u-tokyo.ac.jp Notes: svn path=/head/; revision=36016
* The description of the format of the id mapfile is wrong. You havePoul-Henning Kamp1998-05-131-2/+2
| | | | | | | | | | | to write an original-id and a local-id in the other way around. PR: 6593 Reviewed by: phk Submitted by: Amakawa Shuhei <amakawa@hoh.t.u-tokyo.ac.jp> Notes: svn path=/head/; revision=36015
* Removed definition of _NEW_VFSCONF. The new vfsconf interface is nowBruce Evans1998-01-201-1/+0
| | | | | | | the default. Notes: svn path=/head/; revision=32645
* Show the real revision date and not the date that thisSteve Price1997-06-231-1/+1
| | | | | | | manpage is being viewed. Notes: svn path=/head/; revision=26826
* 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
* Merge from Lite2 (use new getvfsbyname() and mount(2) interface)Peter Wemm1997-03-113-13/+14
| | | | Notes: svn path=/head/; revision=23680
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22990
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | 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
* 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-231-1/+2
| | | | Notes: svn path=/head/; revision=17797
* Get rid of the last vestiges of the old MOUNT_* constants in theGarrett Wollman1996-05-131-21/+26
| | | | | | | | | | | | 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
* Another round of various man page cleanups.Mike Pritchard1996-02-091-2/+1
| | | | Notes: svn path=/head/; revision=14004
* Use the correct file pointer when reading the group id map file. The oldGarrett Wollman1995-06-131-5/+8
| | | | | | | | code tried to read the group id map from the user id file, and thus would never actually allow a umapfs to be mounted. (!) Notes: svn path=/head/; revision=9206
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-4/+4
| | | | Notes: svn path=/head/; revision=8871
* Whoops.Poul-Henning Kamp1994-11-201-1/+1
| | | | Notes: svn path=/head/; revision=4707
* I might soon stop to keep count of these...Poul-Henning Kamp1994-11-201-1/+1
| | | | Notes: svn path=/head/; revision=4706
* Add support for filesystem-specific `-o' options, and re-implement theGarrett Wollman1994-11-011-1/+1
| | | | | | | | | | | | | | | | | | | most common cd9660 and nfs options like God intended them. (It is now possible to say mount -o ro,soft,bg,intr there:/foo/bar /foo/bar again.) This whole getmntopt() business is an incredible botch; it never should have been anything more than a wrapper around getsubopt(3). Because if the way the current hackaround is implemented, options which take arguments (like the old `rsize' and `wsize') are still unavailable, and must be accessed the new, broken way. (It's unimaginable how Berkeley managed to screw up one of the few things about NFS that Sun actually got right to begin with!) Notes: svn path=/head/; revision=4065
* Automatically load NFS and a bevy of other filesystems.Garrett Wollman1994-09-221-1/+10
| | | | Notes: svn path=/head/; revision=2999
* Convert to our man installation style. Also fixed long-standing bugGarrett Wollman1994-08-051-1/+1
| | | | | | | | in `fastboot'/`fasthalt' in which the interpreter would hang around after `reboot' or `halt' is run, causing an irritating ``Killed'' message. Notes: svn path=/head/; revision=1855
* BSD 4.4 Lite sbin SourcesRodney W. Grimes1994-05-266-0/+554
Note: XNSrouted and routed NOT imported here, they shall be imported with usr.sbin. Notes: svn path=/head/; revision=1558