From 3f26fbf5db9603de5bdd17178f136acb6fedb88a Mon Sep 17 00:00:00 2001 From: Alexey Dobriyan Date: Thu, 22 Jan 2009 10:56:54 +0300 Subject: [PATCH] --- yaml --- r: 130018 b: refs/heads/master c: 2a22783be0fbbd63599dd6aacf8bc2ddab941bf7 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/fs/Kconfig | 21 +-------------------- trunk/fs/cramfs/Kconfig | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+), 21 deletions(-) create mode 100644 trunk/fs/cramfs/Kconfig diff --git a/[refs] b/[refs] index 67413c522d79..2b28accf1353 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 571f0a0bdeeb2d1692751b6c5df15dafb483c7ff +refs/heads/master: 2a22783be0fbbd63599dd6aacf8bc2ddab941bf7 diff --git a/trunk/fs/Kconfig b/trunk/fs/Kconfig index fad19083285c..d7b84dfed4f8 100644 --- a/trunk/fs/Kconfig +++ b/trunk/fs/Kconfig @@ -212,26 +212,7 @@ source "fs/efs/Kconfig" source "fs/jffs2/Kconfig" # UBIFS File system configuration source "fs/ubifs/Kconfig" - -config CRAMFS - tristate "Compressed ROM file system support (cramfs)" - depends on BLOCK - select ZLIB_INFLATE - help - Saying Y here includes support for CramFs (Compressed ROM File - System). CramFs is designed to be a simple, small, and compressed - file system for ROM based embedded systems. CramFs is read-only, - limited to 256MB file systems (with 16MB files), and doesn't support - 16/32 bits uid/gid, hard links and timestamps. - - See and - for further information. - - To compile this as a module, choose M here: the module will be called - cramfs. Note that the root file system (the one containing the - directory /) cannot be compiled as a module. - - If unsure, say N. +source "fs/cramfs/Kconfig" config SQUASHFS tristate "SquashFS 4.0 - Squashed file system support" diff --git a/trunk/fs/cramfs/Kconfig b/trunk/fs/cramfs/Kconfig new file mode 100644 index 000000000000..cd06466f365e --- /dev/null +++ b/trunk/fs/cramfs/Kconfig @@ -0,0 +1,19 @@ +config CRAMFS + tristate "Compressed ROM file system support (cramfs)" + depends on BLOCK + select ZLIB_INFLATE + help + Saying Y here includes support for CramFs (Compressed ROM File + System). CramFs is designed to be a simple, small, and compressed + file system for ROM based embedded systems. CramFs is read-only, + limited to 256MB file systems (with 16MB files), and doesn't support + 16/32 bits uid/gid, hard links and timestamps. + + See and + for further information. + + To compile this as a module, choose M here: the module will be called + cramfs. Note that the root file system (the one containing the + directory /) cannot be compiled as a module. + + If unsure, say N.