diff options
| author | Roman Zippel <zippel@linux-m68k.org> | 2002-10-29 04:32:41 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@penguin.transmeta.com> | 2002-10-29 04:32:41 -0800 |
| commit | 82fe246fb7291daaf2f71fdb8b61a07ce5e3678b (patch) | |
| tree | ef3cc6709c4a752dc10795018f5b9fd440db4271 /lib | |
| parent | b5ae1625139f28927a47024303a7893333fdbc8b (diff) | |
[PATCH] new kernel configuration 7/7
This adds the remaining config files.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Kconfig | 29 |
1 files changed, 29 insertions, 0 deletions
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 + |
