From 82fe246fb7291daaf2f71fdb8b61a07ce5e3678b Mon Sep 17 00:00:00 2001 From: Roman Zippel Date: Tue, 29 Oct 2002 04:32:41 -0800 Subject: [PATCH] new kernel configuration 7/7 This adds the remaining config files. --- lib/Kconfig | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lib/Kconfig (limited to 'lib') diff --git a/lib/Kconfig b/lib/Kconfig new file mode 100644 index 000000000000..d965d02e8f3f --- /dev/null +++ b/lib/Kconfig @@ -0,0 +1,29 @@ +# +# Library configuration +# + +menu "Library routines" + +config CRC32 + tristate "CRC32 functions" + help + This option is provided for the case where no in-kernel-tree + modules require CRC32 functions, but a module built outside the + kernel tree does. Such modules that use library CRC32 functions + require M here. + +# +# Do we need the compression support? +# +config ZLIB_INFLATE + tristate + default m if CRAMFS!=y && PPP_DEFLATE!=y && JFFS2_FS!=y && ZISOFS_FS!=y && (CRAMFS=m || PPP_DEFLATE=m || JFFS2_FS=m || ZISOFS_FS=m) + default y if CRAMFS=y || PPP_DEFLATE=y || JFFS2_FS=y || ZISOFS_FS=y + +config ZLIB_DEFLATE + tristate + default m if PPP_DEFLATE!=y && JFFS2_FS!=y && (PPP_DEFLATE=m || JFFS2_FS=m) + default y if PPP_DEFLATE=y || JFFS2_FS=y + +endmenu + -- cgit v1.2.3