Commit 90ffd467933eaf581e11fec51e7ba16fc9bd542d

Authored by Alexey Dobriyan
1 parent 335debee07

fs/Kconfig: move autofs, autofs4 out

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>

Showing 3 changed files with 43 additions and 42 deletions Side-by-side Diff

... ... @@ -112,48 +112,8 @@
112 112 depends on XFS_QUOTA || QUOTA
113 113 default y
114 114  
115   -config AUTOFS_FS
116   - tristate "Kernel automounter support"
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   -
137   -config 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.
  115 +source "fs/autofs/Kconfig"
  116 +source "fs/autofs4/Kconfig"
157 117  
158 118 config FUSE_FS
159 119 tristate "FUSE (Filesystem in Userspace) support"
  1 +config 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.
  1 +config 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.