| 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 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | config CRC_CCITT | 
 | 11 | 	tristate "CRC-CCITT functions" | 
 | 12 | 	help | 
 | 13 | 	  This option is provided for the case where no in-kernel-tree | 
 | 14 | 	  modules require CRC-CCITT functions, but a module built outside | 
 | 15 | 	  the kernel tree does. Such modules that use library CRC-CCITT | 
 | 16 | 	  functions require M here. | 
 | 17 |  | 
| Evgeniy Polyakov | 7657ec1 | 2005-08-17 15:17:26 +0400 | [diff] [blame] | 18 | config CRC16 | 
 | 19 | 	tristate "CRC16 functions" | 
 | 20 | 	help | 
 | 21 | 	  This option is provided for the case where no in-kernel-tree | 
 | 22 | 	  modules require CRC16 functions, but a module built outside | 
 | 23 | 	  the kernel tree does. Such modules that use library CRC16 | 
 | 24 | 	  functions require M here. | 
 | 25 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | config CRC32 | 
 | 27 | 	tristate "CRC32 functions" | 
 | 28 | 	default y | 
| Akinobu Mita | 906d66d | 2006-12-08 02:36:25 -0800 | [diff] [blame] | 29 | 	select BITREVERSE | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | 	help | 
 | 31 | 	  This option is provided for the case where no in-kernel-tree | 
 | 32 | 	  modules require CRC32 functions, but a module built outside the | 
 | 33 | 	  kernel tree does. Such modules that use library CRC32 functions | 
 | 34 | 	  require M here. | 
 | 35 |  | 
 | 36 | config LIBCRC32C | 
 | 37 | 	tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check" | 
 | 38 | 	help | 
 | 39 | 	  This option is provided for the case where no in-kernel-tree | 
 | 40 | 	  modules require CRC32c functions, but a module built outside the | 
 | 41 | 	  kernel tree does. Such modules that use library CRC32c functions | 
 | 42 | 	  require M here.  See Castagnoli93. | 
 | 43 | 	  Module will be libcrc32c. | 
 | 44 |  | 
| Al Viro | e65e1fc | 2006-09-12 03:04:40 -0400 | [diff] [blame] | 45 | config AUDIT_GENERIC | 
 | 46 | 	bool | 
 | 47 | 	depends on AUDIT && !AUDIT_ARCH | 
 | 48 | 	default y | 
 | 49 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | # | 
 | 51 | # compression support is select'ed if needed | 
 | 52 | # | 
 | 53 | config ZLIB_INFLATE | 
 | 54 | 	tristate | 
 | 55 |  | 
 | 56 | config ZLIB_DEFLATE | 
 | 57 | 	tristate | 
 | 58 |  | 
 | 59 | # | 
| Jes Sorensen | f14f75b | 2005-06-21 17:15:02 -0700 | [diff] [blame] | 60 | # Generic allocator support is selected if needed | 
 | 61 | # | 
 | 62 | config GENERIC_ALLOCATOR | 
 | 63 | 	boolean | 
 | 64 |  | 
 | 65 | # | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | # reed solomon support is select'ed if needed | 
 | 67 | # | 
 | 68 | config REED_SOLOMON | 
 | 69 | 	tristate | 
 | 70 | 	 | 
 | 71 | config REED_SOLOMON_ENC8 | 
 | 72 | 	boolean | 
 | 73 |  | 
 | 74 | config REED_SOLOMON_DEC8 | 
 | 75 | 	boolean | 
 | 76 |  | 
 | 77 | config REED_SOLOMON_ENC16 | 
 | 78 | 	boolean | 
 | 79 |  | 
 | 80 | config REED_SOLOMON_DEC16 | 
 | 81 | 	boolean | 
 | 82 |  | 
| David S. Miller | f770434 | 2005-06-24 17:39:03 -0700 | [diff] [blame] | 83 | # | 
 | 84 | # Textsearch support is select'ed if needed | 
 | 85 | # | 
| Thomas Graf | 2de4ff7 | 2005-06-23 20:49:30 -0700 | [diff] [blame] | 86 | config TEXTSEARCH | 
| David S. Miller | f770434 | 2005-06-24 17:39:03 -0700 | [diff] [blame] | 87 | 	boolean | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 |  | 
| Thomas Graf | df3fb93 | 2005-06-23 20:58:37 -0700 | [diff] [blame] | 89 | config TEXTSEARCH_KMP | 
| David S. Miller | f770434 | 2005-06-24 17:39:03 -0700 | [diff] [blame] | 90 | 	tristate | 
| Thomas Graf | df3fb93 | 2005-06-23 20:58:37 -0700 | [diff] [blame] | 91 |  | 
| Pablo Neira Ayuso | 8082e4e | 2005-08-25 16:12:22 -0700 | [diff] [blame] | 92 | config TEXTSEARCH_BM | 
| David S. Miller | 29cb9f9 | 2005-08-25 16:23:11 -0700 | [diff] [blame] | 93 | 	tristate | 
| Pablo Neira Ayuso | 8082e4e | 2005-08-25 16:12:22 -0700 | [diff] [blame] | 94 |  | 
| Thomas Graf | 6408f79 | 2005-06-23 20:59:16 -0700 | [diff] [blame] | 95 | config TEXTSEARCH_FSM | 
| David S. Miller | f770434 | 2005-06-24 17:39:03 -0700 | [diff] [blame] | 96 | 	tristate | 
| Thomas Graf | 6408f79 | 2005-06-23 20:59:16 -0700 | [diff] [blame] | 97 |  | 
| Ingo Molnar | 77ba89c | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 98 | # | 
 | 99 | # plist support is select#ed if needed | 
 | 100 | # | 
 | 101 | config PLIST | 
 | 102 | 	boolean | 
 | 103 |  | 
| Al Viro | ee36c2b | 2006-12-13 00:35:00 -0800 | [diff] [blame^] | 104 | config IOMAP_COPY | 
 | 105 | 	boolean | 
 | 106 | 	depends on !UML | 
 | 107 | 	default y | 
 | 108 |  | 
| Thomas Graf | 2de4ff7 | 2005-06-23 20:49:30 -0700 | [diff] [blame] | 109 | endmenu |