forked from microsoft/WSL2-Linux-Kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
autofs: create autofs Kconfig and Makefile
Create Makefile and Kconfig for autofs module. [raven@themaw.net: make autofs4 Kconfig depend on AUTOFS_FS] Link: http://lkml.kernel.org/r/152687649097.8263.7046086367407522029.stgit@pluto.themaw.net Link: http://lkml.kernel.org/r/152626705591.28589.356365986974038383.stgit@pluto.themaw.net Signed-off-by: Ian Kent <raven@themaw.net> Tested-by: Randy Dunlap <rdunlap@infradead.org> Cc: Al Viro <viro@ZenIV.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
- Loading branch information
Showing
5 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
config AUTOFS_FS | ||
tristate "Kernel automounter support (supports v3, v4 and v5)" | ||
default n | ||
help | ||
The automounter is a tool to automatically mount remote file systems | ||
on demand. This implementation is partially kernel-based to reduce | ||
overhead in the already-mounted case; this is unlike the BSD | ||
automounter (amd), which is a pure user space daemon. | ||
|
||
To use the automounter you need the user-space tools from | ||
<https://www.kernel.org/pub/linux/daemons/autofs/>; you also want | ||
to answer Y to "NFS file system support", below. | ||
|
||
To compile this support as a module, choose M here: the module will be | ||
called autofs. | ||
|
||
If you are not a part of a fairly large, distributed network or | ||
don't have a laptop which needs to dynamically reconfigure to the | ||
local network, you probably do not need an automounter, and can say | ||
N here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
# Makefile for the linux autofs-filesystem routines. | ||
# | ||
|
||
obj-$(CONFIG_AUTOFS_FS) += autofs.o | ||
|
||
autofs-objs := init.o inode.o root.o symlink.o waitq.o expire.o dev-ioctl.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters