aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2009-01-22 02:27:30 -0500
committerAlexey Dobriyan <adobriyan@gmail.com>2009-01-22 05:15:54 -0500
commit335debee07f2d4187a6073d7764ed56bb2ae52f4 (patch)
tree7eed30f79fbb00655e57d268176f263b90c050e2
parent2fe4371dff3f1a5a1f7d91f1b090076954f4d17e (diff)
fs/Kconfig: move btrfs out
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
-rw-r--r--fs/Kconfig20
-rw-r--r--fs/btrfs/Kconfig18
2 files changed, 19 insertions, 19 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index 9fbc43f973d4..51f2aba92c22 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -50,25 +50,7 @@ config FILE_LOCKING
50source "fs/xfs/Kconfig" 50source "fs/xfs/Kconfig"
51source "fs/gfs2/Kconfig" 51source "fs/gfs2/Kconfig"
52source "fs/ocfs2/Kconfig" 52source "fs/ocfs2/Kconfig"
53 53source "fs/btrfs/Kconfig"
54config BTRFS_FS
55 tristate "Btrfs filesystem (EXPERIMENTAL) Unstable disk format"
56 depends on EXPERIMENTAL
57 select LIBCRC32C
58 select ZLIB_INFLATE
59 select ZLIB_DEFLATE
60 help
61 Btrfs is a new filesystem with extents, writable snapshotting,
62 support for multiple devices and many more features.
63
64 Btrfs is highly experimental, and THE DISK FORMAT IS NOT YET
65 FINALIZED. You should say N here unless you are interested in
66 testing Btrfs with non-critical data.
67
68 To compile this file system support as a module, choose M here. The
69 module will be called btrfs.
70
71 If unsure, say N.
72 54
73endif # BLOCK 55endif # BLOCK
74 56
diff --git a/fs/btrfs/Kconfig b/fs/btrfs/Kconfig
new file mode 100644
index 000000000000..f8fcf999ea1b
--- /dev/null
+++ b/fs/btrfs/Kconfig
@@ -0,0 +1,18 @@
1config BTRFS_FS
2 tristate "Btrfs filesystem (EXPERIMENTAL) Unstable disk format"
3 depends on EXPERIMENTAL
4 select LIBCRC32C
5 select ZLIB_INFLATE
6 select ZLIB_DEFLATE
7 help
8 Btrfs is a new filesystem with extents, writable snapshotting,
9 support for multiple devices and many more features.
10
11 Btrfs is highly experimental, and THE DISK FORMAT IS NOT YET
12 FINALIZED. You should say N here unless you are interested in
13 testing Btrfs with non-critical data.
14
15 To compile this file system support as a module, choose M here. The
16 module will be called btrfs.
17
18 If unsure, say N.