Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Library configuration |
| 3 | # |
| 4 | |
| 5 | menu "Library routines" |
| 6 | |
| 7 | config CRC_CCITT |
| 8 | tristate "CRC-CCITT functions" |
| 9 | help |
| 10 | This option is provided for the case where no in-kernel-tree |
| 11 | modules require CRC-CCITT functions, but a module built outside |
| 12 | the kernel tree does. Such modules that use library CRC-CCITT |
| 13 | functions require M here. |
| 14 | |
| 15 | config CRC32 |
| 16 | tristate "CRC32 functions" |
| 17 | default y |
| 18 | help |
| 19 | This option is provided for the case where no in-kernel-tree |
| 20 | modules require CRC32 functions, but a module built outside the |
| 21 | kernel tree does. Such modules that use library CRC32 functions |
| 22 | require M here. |
| 23 | |
| 24 | config LIBCRC32C |
| 25 | tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check" |
| 26 | help |
| 27 | This option is provided for the case where no in-kernel-tree |
| 28 | modules require CRC32c functions, but a module built outside the |
| 29 | kernel tree does. Such modules that use library CRC32c functions |
| 30 | require M here. See Castagnoli93. |
| 31 | Module will be libcrc32c. |
| 32 | |
| 33 | # |
| 34 | # compression support is select'ed if needed |
| 35 | # |
| 36 | config ZLIB_INFLATE |
| 37 | tristate |
| 38 | |
| 39 | config ZLIB_DEFLATE |
| 40 | tristate |
| 41 | |
| 42 | # |
Jes Sorensen | f14f75b | 2005-06-21 17:15:02 -0700 | [diff] [blame] | 43 | # Generic allocator support is selected if needed |
| 44 | # |
| 45 | config GENERIC_ALLOCATOR |
| 46 | boolean |
| 47 | |
| 48 | # |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | # reed solomon support is select'ed if needed |
| 50 | # |
| 51 | config REED_SOLOMON |
| 52 | tristate |
| 53 | |
| 54 | config REED_SOLOMON_ENC8 |
| 55 | boolean |
| 56 | |
| 57 | config REED_SOLOMON_DEC8 |
| 58 | boolean |
| 59 | |
| 60 | config REED_SOLOMON_ENC16 |
| 61 | boolean |
| 62 | |
| 63 | config REED_SOLOMON_DEC16 |
| 64 | boolean |
| 65 | |
Thomas Graf | 2de4ff7 | 2005-06-23 20:49:30 -0700 | [diff] [blame] | 66 | config TEXTSEARCH |
| 67 | boolean "Textsearch infrastructure" |
| 68 | default y |
| 69 | help |
| 70 | Say Y here if you want to provide a textsearch infrastructure |
| 71 | to other subsystems. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Thomas Graf | df3fb93 | 2005-06-23 20:58:37 -0700 | [diff] [blame] | 73 | config TEXTSEARCH_KMP |
| 74 | depends on TEXTSEARCH |
| 75 | tristate "Knuth-Morris-Pratt" |
| 76 | help |
| 77 | Say Y here if you want to be able to search text using the |
| 78 | Knuth-Morris-Pratt textsearch algorithm. |
| 79 | |
| 80 | To compile this code as a module, choose M here: the |
| 81 | module will be called ts_kmp. |
| 82 | |
Thomas Graf | 6408f79 | 2005-06-23 20:59:16 -0700 | [diff] [blame] | 83 | config TEXTSEARCH_FSM |
| 84 | depends on TEXTSEARCH |
| 85 | tristate "Finite state machine" |
| 86 | help |
| 87 | Say Y here if you want to be able to search text using a |
| 88 | naive finite state machine approach implementing a subset |
| 89 | of regular expressions. |
| 90 | |
| 91 | To compile this code as a module, choose M here: the |
| 92 | module will be called ts_fsm. |
| 93 | |
Thomas Graf | 2de4ff7 | 2005-06-23 20:49:30 -0700 | [diff] [blame] | 94 | endmenu |