File tree Expand file tree Collapse file tree 5 files changed +37
-0
lines changed Expand file tree Collapse file tree 5 files changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ source "fs/notify/Kconfig"
108
108
109
109
source "fs/quota/Kconfig"
110
110
111
+ source "fs/autofs/Kconfig"
111
112
source "fs/autofs4/Kconfig"
112
113
source "fs/fuse/Kconfig"
113
114
source "fs/overlayfs/Kconfig"
Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ obj-$(CONFIG_AFFS_FS) += affs/
102
102
obj-$(CONFIG_ROMFS_FS) += romfs/
103
103
obj-$(CONFIG_QNX4FS_FS) += qnx4/
104
104
obj-$(CONFIG_QNX6FS_FS) += qnx6/
105
+ obj-$(CONFIG_AUTOFS_FS) += autofs/
105
106
obj-$(CONFIG_AUTOFS4_FS) += autofs4/
106
107
obj-$(CONFIG_ADFS_FS) += adfs/
107
108
obj-$(CONFIG_FUSE_FS) += fuse/
Original file line number Diff line number Diff line change
1
+ config AUTOFS_FS
2
+ tristate "Kernel automounter support (supports v3, v4 and v5)"
3
+ default n
4
+ help
5
+ The automounter is a tool to automatically mount remote file systems
6
+ on demand. This implementation is partially kernel-based to reduce
7
+ overhead in the already-mounted case; this is unlike the BSD
8
+ automounter (amd), which is a pure user space daemon.
9
+
10
+ To use the automounter you need the user-space tools from
11
+ <https://www.kernel.org/pub/linux/daemons/autofs/>; you also want
12
+ to answer Y to "NFS file system support", below.
13
+
14
+ To compile this support as a module, choose M here: the module will be
15
+ called autofs.
16
+
17
+ If you are not a part of a fairly large, distributed network or
18
+ don't have a laptop which needs to dynamically reconfigure to the
19
+ local network, you probably do not need an automounter, and can say
20
+ N here.
Original file line number Diff line number Diff line change
1
+ #
2
+ # Makefile for the linux autofs-filesystem routines.
3
+ #
4
+
5
+ obj-$(CONFIG_AUTOFS_FS) += autofs.o
6
+
7
+ autofs-objs := init.o inode.o root.o symlink.o waitq.o expire.o dev-ioctl.o
Original file line number Diff line number Diff line change 1
1
config AUTOFS4_FS
2
2
tristate "Kernel automounter version 4 support (also supports v3 and v5)"
3
3
default n
4
+ depends on AUTOFS_FS = n
4
5
help
5
6
The automounter is a tool to automatically mount remote file systems
6
7
on demand. This implementation is partially kernel-based to reduce
@@ -30,3 +31,10 @@ config AUTOFS4_FS
30
31
- any "alias autofs autofs4" will need to be removed.
31
32
32
33
Please configure AUTOFS_FS instead of AUTOFS4_FS from now on.
34
+
35
+ NOTE: Since the modules autofs and autofs4 use the same file system
36
+ type name of "autofs" only one can be built. The "depends"
37
+ above will result in AUTOFS4_FS not appearing in .config for
38
+ any setting of AUTOFS_FS other than n and AUTOFS4_FS will
39
+ appear under the AUTOFS_FS entry otherwise which is intended
40
+ to draw attention to the module rename change.
You can’t perform that action at this time.
0 commit comments