blob: 7c6b83a5eb89dd958d3e01a88158a80a082072e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
menu "Kernel Library Routines"
config ADK_LINUX_KERNEL_CRC_ITU_T
tristate "CRC ITU-T V.41 functions"
default n
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.
config ADK_LINUX_KERNEL_CRC16
tristate "CRC16 library functions"
default n
help
config ADK_LINUX_KERNEL_CRC32
bool "CRC32 library functions"
default n
help
config ADK_LINUX_KERNEL_LIBCRC32C
tristate "CRC32c Cyclic Redundancy-Check"
default n
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.
config ADK_LINUX_KERNEL_CRC_CCITT
tristate "CRC-CCITT library functions"
default n
help
This module provides CRC-CCITT library functions for kernel
modules built outside the kernel.
config ADK_LINUX_KERNEL_ZLIB_DEFLATE
tristate
config ADK_LINUX_KERNEL_ZLIB_INFLATE
tristate
config ADK_LINUX_KERNEL_LZO_COMPRESS
tristate
config ADK_LINUX_KERNEL_LZO_DECOMPRESS
tristate
endmenu
|