aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2009-01-22 02:31:56 -0500
committerAlexey Dobriyan <adobriyan@gmail.com>2009-01-22 05:15:54 -0500
commit90ffd467933eaf581e11fec51e7ba16fc9bd542d (patch)
tree5519ce1e81b5e22e480199a453baac07975c9c79 /fs
parent335debee07f2d4187a6073d7764ed56bb2ae52f4 (diff)
fs/Kconfig: move autofs, autofs4 out
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/Kconfig44
-rw-r--r--fs/autofs/Kconfig21
-rw-r--r--fs/autofs4/Kconfig20
3 files changed, 43 insertions, 42 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index 51f2aba92c22..70527fe6b630 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -112,48 +112,8 @@ config QUOTACTL
112 depends on XFS_QUOTA || QUOTA 112 depends on XFS_QUOTA || QUOTA
113 default y 113 default y
114 114
115config AUTOFS_FS 115source "fs/autofs/Kconfig"
116 tristate "Kernel automounter support" 116source "fs/autofs4/Kconfig"
117 help
118 The automounter is a tool to automatically mount remote file systems
119 on demand. This implementation is partially kernel-based to reduce
120 overhead in the already-mounted case; this is unlike the BSD
121 automounter (amd), which is a pure user space daemon.
122
123 To use the automounter you need the user-space tools from the autofs
124 package; you can find the location in <file:Documentation/Changes>.
125 You also want to answer Y to "NFS file system support", below.
126
127 If you want to use the newer version of the automounter with more
128 features, say N here and say Y to "Kernel automounter v4 support",
129 below.
130
131 To compile this support as a module, choose M here: the module will be
132 called autofs.
133
134 If you are not a part of a fairly large, distributed network, you
135 probably do not need an automounter, and can say N here.
136
137config AUTOFS4_FS
138 tristate "Kernel automounter version 4 support (also supports v3)"
139 help
140 The automounter is a tool to automatically mount remote file systems
141 on demand. This implementation is partially kernel-based to reduce
142 overhead in the already-mounted case; this is unlike the BSD
143 automounter (amd), which is a pure user space daemon.
144
145 To use the automounter you need the user-space tools from
146 <ftp://ftp.kernel.org/pub/linux/daemons/autofs/v4/>; you also
147 want to answer Y to "NFS file system support", below.
148
149 To compile this support as a module, choose M here: the module will be
150 called autofs4. You will need to add "alias autofs autofs4" to your
151 modules configuration file.
152
153 If you are not a part of a fairly large, distributed network or
154 don't have a laptop which needs to dynamically reconfigure to the
155 local network, you probably do not need an automounter, and can say
156 N here.
157 117
158config FUSE_FS 118config FUSE_FS
159 tristate "FUSE (Filesystem in Userspace) support" 119 tristate "FUSE (Filesystem in Userspace) support"
diff --git a/fs/autofs/Kconfig b/fs/autofs/Kconfig
new file mode 100644
index 000000000000..5f3bea90911e
--- /dev/null
+++ b/fs/autofs/Kconfig
@@ -0,0 +1,21 @@
1config AUTOFS_FS
2 tristate "Kernel automounter support"
3 help
4 The automounter is a tool to automatically mount remote file systems
5 on demand. This implementation is partially kernel-based to reduce
6 overhead in the already-mounted case; this is unlike the BSD
7 automounter (amd), which is a pure user space daemon.
8
9 To use the automounter you need the user-space tools from the autofs
10 package; you can find the location in <file:Documentation/Changes>.
11 You also want to answer Y to "NFS file system support", below.
12
13 If you want to use the newer version of the automounter with more
14 features, say N here and say Y to "Kernel automounter v4 support",
15 below.
16
17 To compile this support as a module, choose M here: the module will be
18 called autofs.
19
20 If you are not a part of a fairly large, distributed network, you
21 probably do not need an automounter, and can say N here.
diff --git a/fs/autofs4/Kconfig b/fs/autofs4/Kconfig
new file mode 100644
index 000000000000..1204d6384d39
--- /dev/null
+++ b/fs/autofs4/Kconfig
@@ -0,0 +1,20 @@
1config AUTOFS4_FS
2 tristate "Kernel automounter version 4 support (also supports v3)"
3 help
4 The automounter is a tool to automatically mount remote file systems
5 on demand. This implementation is partially kernel-based to reduce
6 overhead in the already-mounted case; this is unlike the BSD
7 automounter (amd), which is a pure user space daemon.
8
9 To use the automounter you need the user-space tools from
10 <ftp://ftp.kernel.org/pub/linux/daemons/autofs/v4/>; you also
11 want to answer Y to "NFS file system support", below.
12
13 To compile this support as a module, choose M here: the module will be
14 called autofs4. You will need to add "alias autofs autofs4" to your
15 modules configuration file.
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.