aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2009-01-22 02:56:54 -0500
committerAlexey Dobriyan <adobriyan@gmail.com>2009-01-22 05:15:58 -0500
commit2a22783be0fbbd63599dd6aacf8bc2ddab941bf7 (patch)
tree409b63efd212ced91101fea07009ec07d1824cd4
parent571f0a0bdeeb2d1692751b6c5df15dafb483c7ff (diff)
fs/Kconfig: move cramfs out
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
-rw-r--r--fs/Kconfig21
-rw-r--r--fs/cramfs/Kconfig19
2 files changed, 20 insertions, 20 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index fad19083285c..d7b84dfed4f8 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -212,26 +212,7 @@ source "fs/efs/Kconfig"
212source "fs/jffs2/Kconfig" 212source "fs/jffs2/Kconfig"
213# UBIFS File system configuration 213# UBIFS File system configuration
214source "fs/ubifs/Kconfig" 214source "fs/ubifs/Kconfig"
215 215source "fs/cramfs/Kconfig"
216config CRAMFS
217 tristate "Compressed ROM file system support (cramfs)"
218 depends on BLOCK
219 select ZLIB_INFLATE
220 help
221 Saying Y here includes support for CramFs (Compressed ROM File
222 System). CramFs is designed to be a simple, small, and compressed
223 file system for ROM based embedded systems. CramFs is read-only,
224 limited to 256MB file systems (with 16MB files), and doesn't support
225 16/32 bits uid/gid, hard links and timestamps.
226
227 See <file:Documentation/filesystems/cramfs.txt> and
228 <file:fs/cramfs/README> for further information.
229
230 To compile this as a module, choose M here: the module will be called
231 cramfs. Note that the root file system (the one containing the
232 directory /) cannot be compiled as a module.
233
234 If unsure, say N.
235 216
236config SQUASHFS 217config SQUASHFS
237 tristate "SquashFS 4.0 - Squashed file system support" 218 tristate "SquashFS 4.0 - Squashed file system support"
diff --git a/fs/cramfs/Kconfig b/fs/cramfs/Kconfig
new file mode 100644
index 000000000000..cd06466f365e
--- /dev/null
+++ b/fs/cramfs/Kconfig
@@ -0,0 +1,19 @@
1config CRAMFS
2 tristate "Compressed ROM file system support (cramfs)"
3 depends on BLOCK
4 select ZLIB_INFLATE
5 help
6 Saying Y here includes support for CramFs (Compressed ROM File
7 System). CramFs is designed to be a simple, small, and compressed
8 file system for ROM based embedded systems. CramFs is read-only,
9 limited to 256MB file systems (with 16MB files), and doesn't support
10 16/32 bits uid/gid, hard links and timestamps.
11
12 See <file:Documentation/filesystems/cramfs.txt> and
13 <file:fs/cramfs/README> for further information.
14
15 To compile this as a module, choose M here: the module will be called
16 cramfs. Note that the root file system (the one containing the
17 directory /) cannot be compiled as a module.
18
19 If unsure, say N.