Config.in.lib 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. menu "Kernel Library Routines"
  4. config ADK_LINUX_KERNEL_CRC_ITU_T
  5. tristate "CRC ITU-T V.41 functions"
  6. default n
  7. help
  8. This option is provided for the case where no in-kernel-tree
  9. modules require CRC ITU-T V.41 functions, but a module built outside
  10. the kernel tree does. Such modules that use library CRC ITU-T V.41
  11. functions require M here.
  12. config ADK_LINUX_KERNEL_CRC16
  13. tristate "CRC16 library functions"
  14. default n
  15. help
  16. config ADK_LINUX_KERNEL_CRC32
  17. bool "CRC32 library functions"
  18. default n
  19. help
  20. config ADK_LINUX_KERNEL_LIBCRC32C
  21. tristate "CRC32c Cyclic Redundancy-Check"
  22. default n
  23. help
  24. This option is provided for the case where no in-kernel-tree
  25. modules require CRC32c functions, but a module built outside the
  26. kernel tree does. Such modules that use library CRC32c functions
  27. require M here. See Castagnoli93.
  28. config ADK_LINUX_KERNEL_CRC_CCITT
  29. tristate "CRC-CCITT library functions"
  30. default n
  31. help
  32. This module provides CRC-CCITT library functions for kernel
  33. modules built outside the kernel.
  34. config ADK_LINUX_KERNEL_ZLIB_DEFLATE
  35. tristate
  36. config ADK_LINUX_KERNEL_ZLIB_INFLATE
  37. tristate
  38. config ADK_LINUX_KERNEL_LZO_COMPRESS
  39. tristate
  40. config ADK_LINUX_KERNEL_LZO_DECOMPRESS
  41. tristate
  42. endmenu