Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Library configuration |
| 3 | # |
| 4 | |
| 5 | menu "Library routines" |
| 6 | |
Akinobu Mita | a5cfc1e | 2006-12-08 02:36:25 -0800 | [diff] [blame] | 7 | config BITREVERSE |
| 8 | tristate |
| 9 | |
Alexander van Heukelum | 19870de | 2008-04-25 13:12:53 +0200 | [diff] [blame] | 10 | config GENERIC_FIND_FIRST_BIT |
| 11 | def_bool n |
| 12 | |
| 13 | config GENERIC_FIND_NEXT_BIT |
| 14 | def_bool n |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | config CRC_CCITT |
| 17 | tristate "CRC-CCITT functions" |
| 18 | help |
| 19 | This option is provided for the case where no in-kernel-tree |
| 20 | modules require CRC-CCITT functions, but a module built outside |
| 21 | the kernel tree does. Such modules that use library CRC-CCITT |
| 22 | functions require M here. |
| 23 | |
Evgeniy Polyakov | 7657ec1 | 2005-08-17 15:17:26 +0400 | [diff] [blame] | 24 | config CRC16 |
| 25 | tristate "CRC16 functions" |
| 26 | help |
| 27 | This option is provided for the case where no in-kernel-tree |
| 28 | modules require CRC16 functions, but a module built outside |
| 29 | the kernel tree does. Such modules that use library CRC16 |
| 30 | functions require M here. |
| 31 | |
Ivo van Doorn | 3e7cbae | 2006-06-12 16:17:04 +0200 | [diff] [blame] | 32 | config CRC_ITU_T |
| 33 | tristate "CRC ITU-T V.41 functions" |
| 34 | help |
| 35 | This option is provided for the case where no in-kernel-tree |
| 36 | modules require CRC ITU-T V.41 functions, but a module built outside |
| 37 | the kernel tree does. Such modules that use library CRC ITU-T V.41 |
| 38 | functions require M here. |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | config CRC32 |
| 41 | tristate "CRC32 functions" |
| 42 | default y |
Akinobu Mita | 906d66d | 2006-12-08 02:36:25 -0800 | [diff] [blame] | 43 | select BITREVERSE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | help |
| 45 | This option is provided for the case where no in-kernel-tree |
| 46 | modules require CRC32 functions, but a module built outside the |
| 47 | kernel tree does. Such modules that use library CRC32 functions |
| 48 | require M here. |
| 49 | |
Jan Nikitenko | ad24152 | 2007-07-17 04:04:03 -0700 | [diff] [blame] | 50 | config CRC7 |
| 51 | tristate "CRC7 functions" |
| 52 | help |
| 53 | This option is provided for the case where no in-kernel-tree |
| 54 | modules require CRC7 functions, but a module built outside |
| 55 | the kernel tree does. Such modules that use library CRC7 |
| 56 | functions require M here. |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | config LIBCRC32C |
| 59 | tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check" |
| 60 | help |
| 61 | This option is provided for the case where no in-kernel-tree |
| 62 | modules require CRC32c functions, but a module built outside the |
| 63 | kernel tree does. Such modules that use library CRC32c functions |
| 64 | require M here. See Castagnoli93. |
| 65 | Module will be libcrc32c. |
| 66 | |
Al Viro | e65e1fc | 2006-09-12 03:04:40 -0400 | [diff] [blame] | 67 | config AUDIT_GENERIC |
| 68 | bool |
| 69 | depends on AUDIT && !AUDIT_ARCH |
| 70 | default y |
| 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | # |
| 73 | # compression support is select'ed if needed |
| 74 | # |
| 75 | config ZLIB_INFLATE |
| 76 | tristate |
| 77 | |
| 78 | config ZLIB_DEFLATE |
| 79 | tristate |
| 80 | |
Richard Purdie | 64c70b1 | 2007-07-10 17:22:24 -0700 | [diff] [blame] | 81 | config LZO_COMPRESS |
| 82 | tristate |
| 83 | |
| 84 | config LZO_DECOMPRESS |
| 85 | tristate |
| 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | # |
Jes Sorensen | f14f75b | 2005-06-21 17:15:02 -0700 | [diff] [blame] | 88 | # Generic allocator support is selected if needed |
| 89 | # |
| 90 | config GENERIC_ALLOCATOR |
| 91 | boolean |
| 92 | |
| 93 | # |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | # reed solomon support is select'ed if needed |
| 95 | # |
| 96 | config REED_SOLOMON |
| 97 | tristate |
| 98 | |
| 99 | config REED_SOLOMON_ENC8 |
| 100 | boolean |
| 101 | |
| 102 | config REED_SOLOMON_DEC8 |
| 103 | boolean |
| 104 | |
| 105 | config REED_SOLOMON_ENC16 |
| 106 | boolean |
| 107 | |
| 108 | config REED_SOLOMON_DEC16 |
| 109 | boolean |
| 110 | |
David S. Miller | f770434 | 2005-06-24 17:39:03 -0700 | [diff] [blame] | 111 | # |
| 112 | # Textsearch support is select'ed if needed |
| 113 | # |
Thomas Graf | 2de4ff7 | 2005-06-23 20:49:30 -0700 | [diff] [blame] | 114 | config TEXTSEARCH |
David S. Miller | f770434 | 2005-06-24 17:39:03 -0700 | [diff] [blame] | 115 | boolean |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Thomas Graf | df3fb93 | 2005-06-23 20:58:37 -0700 | [diff] [blame] | 117 | config TEXTSEARCH_KMP |
David S. Miller | f770434 | 2005-06-24 17:39:03 -0700 | [diff] [blame] | 118 | tristate |
Thomas Graf | df3fb93 | 2005-06-23 20:58:37 -0700 | [diff] [blame] | 119 | |
Pablo Neira Ayuso | 8082e4e | 2005-08-25 16:12:22 -0700 | [diff] [blame] | 120 | config TEXTSEARCH_BM |
David S. Miller | 29cb9f9 | 2005-08-25 16:23:11 -0700 | [diff] [blame] | 121 | tristate |
Pablo Neira Ayuso | 8082e4e | 2005-08-25 16:12:22 -0700 | [diff] [blame] | 122 | |
Thomas Graf | 6408f79 | 2005-06-23 20:59:16 -0700 | [diff] [blame] | 123 | config TEXTSEARCH_FSM |
David S. Miller | f770434 | 2005-06-24 17:39:03 -0700 | [diff] [blame] | 124 | tristate |
Thomas Graf | 6408f79 | 2005-06-23 20:59:16 -0700 | [diff] [blame] | 125 | |
Ingo Molnar | 77ba89c | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 126 | # |
| 127 | # plist support is select#ed if needed |
| 128 | # |
| 129 | config PLIST |
| 130 | boolean |
| 131 | |
Al Viro | 5ea8176 | 2007-02-11 15:41:31 +0000 | [diff] [blame] | 132 | config HAS_IOMEM |
Al Viro | ee36c2b | 2006-12-13 00:35:00 -0800 | [diff] [blame] | 133 | boolean |
Al Viro | 5ea8176 | 2007-02-11 15:41:31 +0000 | [diff] [blame] | 134 | depends on !NO_IOMEM |
| 135 | default y |
| 136 | |
| 137 | config HAS_IOPORT |
| 138 | boolean |
| 139 | depends on HAS_IOMEM && !NO_IOPORT |
Al Viro | ee36c2b | 2006-12-13 00:35:00 -0800 | [diff] [blame] | 140 | default y |
| 141 | |
Heiko Carstens | 411f0f3 | 2007-05-06 14:49:09 -0700 | [diff] [blame] | 142 | config HAS_DMA |
| 143 | boolean |
| 144 | depends on !NO_DMA |
| 145 | default y |
| 146 | |
Geert Uytterhoeven | 928923c | 2007-08-22 14:01:36 -0700 | [diff] [blame] | 147 | config CHECK_SIGNATURE |
| 148 | bool |
| 149 | |
David S. Miller | d9b2b2a | 2008-02-13 16:56:49 -0800 | [diff] [blame] | 150 | config HAVE_LMB |
| 151 | boolean |
| 152 | |
Thomas Graf | 2de4ff7 | 2005-06-23 20:49:30 -0700 | [diff] [blame] | 153 | endmenu |