X-Git-Url: http://ftp.safe.ca/?a=blobdiff_plain;f=lib%2FKconfig;h=170d8ca901d8c61faf09a1aff5846c65b96eced1;hb=a751a7d69fe91e4640884ae02fe44ddceb7f4cd8;hp=54aaf4feaf6c01e05b436866af7522301890eaa2;hpb=831576fe40f4175e0767623cffa4aeb28157943a;p=safe%2Fjmp%2Flinux-2.6 diff --git a/lib/Kconfig b/lib/Kconfig index 54aaf4f..170d8ca 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -2,11 +2,17 @@ # Library configuration # +config BINARY_PRINTF + def_bool n + menu "Library routines" config BITREVERSE tristate +config RATIONAL + boolean + config GENERIC_FIND_FIRST_BIT bool @@ -98,6 +104,24 @@ config LZO_DECOMPRESS tristate # +# These all provide a common interface (hence the apparent duplication with +# ZLIB_INFLATE; DECOMPRESS_GZIP is just a wrapper.) +# +config DECOMPRESS_GZIP + select ZLIB_INFLATE + tristate + +config DECOMPRESS_BZIP2 + tristate + +config DECOMPRESS_LZMA + tristate + +config DECOMPRESS_LZO + select LZO_DECOMPRESS + tristate + +# # Generic allocator support is selected if needed # config GENERIC_ALLOCATOR @@ -136,6 +160,9 @@ config TEXTSEARCH_BM config TEXTSEARCH_FSM tristate +config BTREE + boolean + config HAS_IOMEM boolean depends on !NO_IOMEM @@ -174,4 +201,13 @@ config DISABLE_OBSOLETE_CPUMASK_FUNCTIONS config NLATTR bool +# +# Generic 64-bit atomic support is selected if needed +# +config GENERIC_ATOMIC64 + bool + +config LRU_CACHE + tristate + endmenu