mtd/fs Kconfig,1.4,1.5

havasi at infradead.org havasi at infradead.org
Tue Jun 1 05:02:16 EDT 2004


Update of /home/cvs/mtd/fs
In directory phoenix.infradead.org:/home/havasi/mtd/fs

Modified Files:
	Kconfig 
Log Message:
Dependecy fixes:
  JFFS_PROC_FS
     depends on JFFS_FS && PROC_FS
     (it is bad in 2.6.6, where there is PROC instead of PROC_FS)
  JFFS2_FS
     select CRC32
  JFFS2_ZLIB
     select ZLIB_INFLATE
     select ZLIB_DEFLATE
  JFFS2_PROC
     depends on JFFS2_FS && PROC_FS



Index: Kconfig
===================================================================
RCS file: /home/cvs/mtd/fs/Kconfig,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- Kconfig	25 May 2004 11:31:47 -0000	1.4
+++ Kconfig	1 Jun 2004 09:02:13 -0000	1.5
@@ -16,13 +16,14 @@
 
 config JFFS_PROC_FS
 	bool "JFFS stats available in /proc filesystem"
-	depends on JFFS_FS
+	depends on JFFS_FS && PROC_FS
 	help
 	  Enabling this option will cause statistics from mounted JFFS file systems
 	  to be made available to the user in the /proc/fs/jffs/ directory.
 
 config JFFS2_FS
 	tristate "Journalling Flash File System v2 (JFFS2) support"
+        select CRC32
 	depends on MTD
 	help
 	  JFFS2 is the second generation of the Journalling Flash File System
@@ -69,6 +70,8 @@
 
 config JFFS2_ZLIB
 	bool "JFFS2 ZLIB compression support"
+	select ZLIB_INFLATE
+	select ZLIB_DEFLATE
 	depends on JFFS2_FS
 	default y
         help
@@ -137,7 +140,7 @@
 
 config JFFS2_PROC
 	bool "JFFS2 proc interface support"
-	depends on JFFS2_FS
+	depends on JFFS2_FS && PROC_FS
 	default y
         help
           You can read some statistics and set the compression mode and





More information about the linux-mtd-cvs mailing list