summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2018-01-09 03:31:12 +0000
committerchristos <christos@NetBSD.org>2018-01-09 03:31:12 +0000
commit59a9e119f9032317d04971e1b091d7f4093569c8 (patch)
tree0e426465ae3b9527d0331d2e640ab886e8ad4845 /include
parent52799c41db0df5ab52256628177ef4dbb9e0a09e (diff)
Merge autofs support from: Tomohiro Kusumi
XXX: Does not work yet
Diffstat (limited to 'include')
-rw-r--r--include/mntopts.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/mntopts.h b/include/mntopts.h
index 61e5baf677f..251a5301d3d 100644
--- a/include/mntopts.h
+++ b/include/mntopts.h
@@ -1,4 +1,4 @@
-/* $NetBSD: mntopts.h,v 1.17 2016/02/21 22:45:25 christos Exp $ */
+/* $NetBSD: mntopts.h,v 1.18 2018/01/09 03:31:12 christos Exp $ */
/*-
* Copyright (c) 1994
@@ -62,6 +62,7 @@ struct mntopt {
#define MOPT_IGNORE { "hidden", 0, MNT_IGNORE, 0 }
#define MOPT_EXTATTR { "extattr", 0, MNT_EXTATTR, 0 }
#define MOPT_DISCARD { "discard", 0, MNT_DISCARD, 0 }
+#define MOPT_AUTOMOUNTED { "automounted",0, MNT_AUTOMOUNTED, 0 }
/* Control flags. */
#define MOPT_FORCE { "force", 0, MNT_FORCE, 0 }
@@ -96,7 +97,8 @@ struct mntopt {
MOPT_UNION, \
MOPT_IGNORE, \
MOPT_SYMPERM, \
- MOPT_RUMP
+ MOPT_RUMP, \
+ MOPT_AUTOMOUNTED
__BEGIN_DECLS
typedef struct mntoptparse *mntoptparse_t;