Add -n flag for compatibility with Linux version of mount(8).

Reviewed by: freebsd-fs, eadler, mckusick, jh, wblock
This commit is contained in:
Robert Millan 2013-07-15 21:57:21 +00:00
parent e5736ac88c
commit fc98db27df
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=253372
2 changed files with 7 additions and 1 deletions

View File

@ -118,6 +118,9 @@ When used in conjunction with the
.Fl a
option, also mount those file systems which are marked as
.Dq Li late .
.It Fl n
For compatibility with some other implementations, this flag is
currently a no-op.
.It Fl o
Options are specified with a
.Fl o

View File

@ -253,7 +253,7 @@ main(int argc, char *argv[])
options = NULL;
vfslist = NULL;
vfstype = "ufs";
while ((ch = getopt(argc, argv, "adF:fLlo:prt:uvw")) != -1)
while ((ch = getopt(argc, argv, "adF:fLlno:prt:uvw")) != -1)
switch (ch) {
case 'a':
all = 1;
@ -274,6 +274,9 @@ main(int argc, char *argv[])
case 'l':
late = 1;
break;
case 'n':
/* For compatibility with the Linux version of mount. */
break;
case 'o':
if (*optarg) {
options = catopt(options, optarg);