aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2009-01-22 02:54:16 -0500
committerAlexey Dobriyan <adobriyan@gmail.com>2009-01-22 05:15:57 -0500
commit0b09eb32985d5fbec567e83b18db3dec14d1fef9 (patch)
tree655ad034e2b5eb1f96859b36f3426fce79a2ff93 /fs
parentb08bac1f185b2281c3decb4f8e15e8f41f96e974 (diff)
fs/Kconfig: move befs out
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/Kconfig28
-rw-r--r--fs/befs/Kconfig26
2 files changed, 27 insertions, 27 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index 3b48ab4f0b77..cfddc0a76add 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -206,33 +206,7 @@ source "fs/affs/Kconfig"
206source "fs/ecryptfs/Kconfig" 206source "fs/ecryptfs/Kconfig"
207source "fs/hfs/Kconfig" 207source "fs/hfs/Kconfig"
208source "fs/hfsplus/Kconfig" 208source "fs/hfsplus/Kconfig"
209 209source "fs/befs/Kconfig"
210config BEFS_FS
211 tristate "BeOS file system (BeFS) support (read only) (EXPERIMENTAL)"
212 depends on BLOCK && EXPERIMENTAL
213 select NLS
214 help
215 The BeOS File System (BeFS) is the native file system of Be, Inc's
216 BeOS. Notable features include support for arbitrary attributes
217 on files and directories, and database-like indices on selected
218 attributes. (Also note that this driver doesn't make those features
219 available at this time). It is a 64 bit filesystem, so it supports
220 extremely large volumes and files.
221
222 If you use this filesystem, you should also say Y to at least one
223 of the NLS (native language support) options below.
224
225 If you don't know what this is about, say N.
226
227 To compile this as a module, choose M here: the module will be
228 called befs.
229
230config BEFS_DEBUG
231 bool "Debug BeFS"
232 depends on BEFS_FS
233 help
234 If you say Y here, you can use the 'debug' mount option to enable
235 debugging output from the driver.
236 210
237config BFS_FS 211config BFS_FS
238 tristate "BFS file system support (EXPERIMENTAL)" 212 tristate "BFS file system support (EXPERIMENTAL)"
diff --git a/fs/befs/Kconfig b/fs/befs/Kconfig
new file mode 100644
index 000000000000..7835d30f211f
--- /dev/null
+++ b/fs/befs/Kconfig
@@ -0,0 +1,26 @@
1config BEFS_FS
2 tristate "BeOS file system (BeFS) support (read only) (EXPERIMENTAL)"
3 depends on BLOCK && EXPERIMENTAL
4 select NLS
5 help
6 The BeOS File System (BeFS) is the native file system of Be, Inc's
7 BeOS. Notable features include support for arbitrary attributes
8 on files and directories, and database-like indices on selected
9 attributes. (Also note that this driver doesn't make those features
10 available at this time). It is a 64 bit filesystem, so it supports
11 extremely large volumes and files.
12
13 If you use this filesystem, you should also say Y to at least one
14 of the NLS (native language support) options below.
15
16 If you don't know what this is about, say N.
17
18 To compile this as a module, choose M here: the module will be
19 called befs.
20
21config BEFS_DEBUG
22 bool "Debug BeFS"
23 depends on BEFS_FS
24 help
25 If you say Y here, you can use the 'debug' mount option to enable
26 debugging output from the driver.