1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- menu "Kernel Library Routines"
- config ADK_KERNEL_CRC_ITU_T
- prompt "CRC ITU-T V.41 functions"
- tristate
- 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_KERNEL_CRC16
- prompt "CRC16 library functions"
- boolean
- default n
- help
- config ADK_KERNEL_CRC32
- prompt "CRC32 library functions"
- boolean
- default n
- help
- config ADK_KERNEL_LIBCRC32C
- prompt "CRC32c Cyclic Redundancy-Check"
- tristate
- 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_KERNEL_CRC_CCITT
- prompt "CRC-CCITT library functions"
- tristate
- default n
- help
- This module provides CRC-CCITT library functions for kernel
- modules built outside the kernel.
- config ADK_KERNEL_ZLIB_DEFLATE
- tristate
- default n
- config ADK_KERNEL_ZLIB_INFLATE
- tristate
- default n
- config ADK_KERNEL_LZO_COMPRESS
- tristate
- default n
- config ADK_KERNEL_LZO_DECOMPRESS
- tristate
- default n
- endmenu
|