2005-04-17 00:20:36 +02:00
|
|
|
#
|
|
|
|
# Library configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
menu "Library routines"
|
|
|
|
|
2006-12-08 11:36:25 +01:00
|
|
|
config BITREVERSE
|
|
|
|
tristate
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config CRC_CCITT
|
|
|
|
tristate "CRC-CCITT functions"
|
|
|
|
help
|
|
|
|
This option is provided for the case where no in-kernel-tree
|
|
|
|
modules require CRC-CCITT functions, but a module built outside
|
|
|
|
the kernel tree does. Such modules that use library CRC-CCITT
|
|
|
|
functions require M here.
|
|
|
|
|
2005-08-17 13:17:26 +02:00
|
|
|
config CRC16
|
|
|
|
tristate "CRC16 functions"
|
|
|
|
help
|
|
|
|
This option is provided for the case where no in-kernel-tree
|
|
|
|
modules require CRC16 functions, but a module built outside
|
|
|
|
the kernel tree does. Such modules that use library CRC16
|
|
|
|
functions require M here.
|
|
|
|
|
2006-06-12 16:17:04 +02:00
|
|
|
config CRC_ITU_T
|
|
|
|
tristate "CRC ITU-T V.41 functions"
|
|
|
|
help
|
|
|
|
This option is provided for the case where no in-kernel-tree
|
|
|
|
modules require CRC ITU-T V.41 functions, but a module built outside
|
|
|
|
the kernel tree does. Such modules that use library CRC ITU-T V.41
|
|
|
|
functions require M here.
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config CRC32
|
|
|
|
tristate "CRC32 functions"
|
|
|
|
default y
|
2006-12-08 11:36:25 +01:00
|
|
|
select BITREVERSE
|
2005-04-17 00:20:36 +02:00
|
|
|
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.
|
|
|
|
|
2007-07-17 13:04:03 +02:00
|
|
|
config CRC7
|
|
|
|
tristate "CRC7 functions"
|
|
|
|
help
|
|
|
|
This option is provided for the case where no in-kernel-tree
|
|
|
|
modules require CRC7 functions, but a module built outside
|
|
|
|
the kernel tree does. Such modules that use library CRC7
|
|
|
|
functions require M here.
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config LIBCRC32C
|
|
|
|
tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check"
|
|
|
|
help
|
|
|
|
This option is provided for the case where no in-kernel-tree
|
|
|
|
modules require CRC32c functions, but a module built outside the
|
|
|
|
kernel tree does. Such modules that use library CRC32c functions
|
|
|
|
require M here. See Castagnoli93.
|
|
|
|
Module will be libcrc32c.
|
|
|
|
|
2006-09-12 09:04:40 +02:00
|
|
|
config AUDIT_GENERIC
|
|
|
|
bool
|
|
|
|
depends on AUDIT && !AUDIT_ARCH
|
|
|
|
default y
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#
|
|
|
|
# compression support is select'ed if needed
|
|
|
|
#
|
|
|
|
config ZLIB_INFLATE
|
|
|
|
tristate
|
|
|
|
|
|
|
|
config ZLIB_DEFLATE
|
|
|
|
tristate
|
|
|
|
|
2007-07-11 02:22:24 +02:00
|
|
|
config LZO_COMPRESS
|
|
|
|
tristate
|
|
|
|
|
|
|
|
config LZO_DECOMPRESS
|
|
|
|
tristate
|
|
|
|
|
2005-06-22 02:15:02 +02:00
|
|
|
#
|
|
|
|
# Generic allocator support is selected if needed
|
|
|
|
#
|
|
|
|
config GENERIC_ALLOCATOR
|
|
|
|
boolean
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#
|
|
|
|
# reed solomon support is select'ed if needed
|
|
|
|
#
|
|
|
|
config REED_SOLOMON
|
|
|
|
tristate
|
|
|
|
|
|
|
|
config REED_SOLOMON_ENC8
|
|
|
|
boolean
|
|
|
|
|
|
|
|
config REED_SOLOMON_DEC8
|
|
|
|
boolean
|
|
|
|
|
|
|
|
config REED_SOLOMON_ENC16
|
|
|
|
boolean
|
|
|
|
|
|
|
|
config REED_SOLOMON_DEC16
|
|
|
|
boolean
|
|
|
|
|
2005-06-25 02:39:03 +02:00
|
|
|
#
|
|
|
|
# Textsearch support is select'ed if needed
|
|
|
|
#
|
2005-06-24 05:49:30 +02:00
|
|
|
config TEXTSEARCH
|
2005-06-25 02:39:03 +02:00
|
|
|
boolean
|
2005-04-17 00:20:36 +02:00
|
|
|
|
[LIB]: Knuth-Morris-Pratt textsearch algorithm
Implements a linear-time string-matching algorithm due to Knuth,
Morris, and Pratt [1]. Their algorithm avoids the explicit
computation of the transition function DELTA altogether. Its
matching time is O(n), for n being length(text), using just an
auxiliary function PI[1..m], for m being length(pattern),
precomputed from the pattern in time O(m). The array PI allows
the transition function DELTA to be computed efficiently
"on the fly" as needed. Roughly speaking, for any state
"q" = 0,1,...,m and any character "a" in SIGMA, the value
PI["q"] contains the information that is independent of "a" and
is needed to compute DELTA("q", "a") [2]. Since the array PI
has only m entries, whereas DELTA has O(m|SIGMA|) entries, we
save a factor of |SIGMA| in the preprocessing time by computing
PI rather than DELTA.
[1] Cormen, Leiserson, Rivest, Stein
Introdcution to Algorithms, 2nd Edition, MIT Press
[2] See finite automation theory
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
2005-06-24 05:58:37 +02:00
|
|
|
config TEXTSEARCH_KMP
|
2005-06-25 02:39:03 +02:00
|
|
|
tristate
|
[LIB]: Knuth-Morris-Pratt textsearch algorithm
Implements a linear-time string-matching algorithm due to Knuth,
Morris, and Pratt [1]. Their algorithm avoids the explicit
computation of the transition function DELTA altogether. Its
matching time is O(n), for n being length(text), using just an
auxiliary function PI[1..m], for m being length(pattern),
precomputed from the pattern in time O(m). The array PI allows
the transition function DELTA to be computed efficiently
"on the fly" as needed. Roughly speaking, for any state
"q" = 0,1,...,m and any character "a" in SIGMA, the value
PI["q"] contains the information that is independent of "a" and
is needed to compute DELTA("q", "a") [2]. Since the array PI
has only m entries, whereas DELTA has O(m|SIGMA|) entries, we
save a factor of |SIGMA| in the preprocessing time by computing
PI rather than DELTA.
[1] Cormen, Leiserson, Rivest, Stein
Introdcution to Algorithms, 2nd Edition, MIT Press
[2] See finite automation theory
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
2005-06-24 05:58:37 +02:00
|
|
|
|
2005-08-26 01:12:22 +02:00
|
|
|
config TEXTSEARCH_BM
|
2005-08-26 01:23:11 +02:00
|
|
|
tristate
|
2005-08-26 01:12:22 +02:00
|
|
|
|
2005-06-24 05:59:16 +02:00
|
|
|
config TEXTSEARCH_FSM
|
2005-06-25 02:39:03 +02:00
|
|
|
tristate
|
2005-06-24 05:59:16 +02:00
|
|
|
|
2006-06-27 11:54:51 +02:00
|
|
|
#
|
|
|
|
# plist support is select#ed if needed
|
|
|
|
#
|
|
|
|
config PLIST
|
|
|
|
boolean
|
|
|
|
|
2007-02-11 16:41:31 +01:00
|
|
|
config HAS_IOMEM
|
2006-12-13 09:35:00 +01:00
|
|
|
boolean
|
2007-02-11 16:41:31 +01:00
|
|
|
depends on !NO_IOMEM
|
|
|
|
default y
|
|
|
|
|
|
|
|
config HAS_IOPORT
|
|
|
|
boolean
|
|
|
|
depends on HAS_IOMEM && !NO_IOPORT
|
2006-12-13 09:35:00 +01:00
|
|
|
default y
|
|
|
|
|
2007-05-06 23:49:09 +02:00
|
|
|
config HAS_DMA
|
|
|
|
boolean
|
|
|
|
depends on !NO_DMA
|
|
|
|
default y
|
|
|
|
|
2007-08-22 23:01:36 +02:00
|
|
|
config CHECK_SIGNATURE
|
|
|
|
bool
|
|
|
|
|
2005-06-24 05:49:30 +02:00
|
|
|
endmenu
|