Config.in.lib 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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_KERNEL_CRC_ITU_T
  5. prompt "CRC ITU-T V.41 functions"
  6. tristate
  7. default n
  8. help
  9. This option is provided for the case where no in-kernel-tree
  10. modules require CRC ITU-T V.41 functions, but a module built outside
  11. the kernel tree does. Such modules that use library CRC ITU-T V.41
  12. functions require M here.
  13. config ADK_KERNEL_CRC16
  14. prompt "CRC16 library functions"
  15. boolean
  16. default n
  17. help
  18. config ADK_KERNEL_CRC32
  19. prompt "CRC32 library functions"
  20. boolean
  21. default n
  22. help
  23. config ADK_KERNEL_LIBCRC32C
  24. prompt "CRC32c Cyclic Redundancy-Check"
  25. tristate
  26. default n
  27. help
  28. This option is provided for the case where no in-kernel-tree
  29. modules require CRC32c functions, but a module built outside the
  30. kernel tree does. Such modules that use library CRC32c functions
  31. require M here. See Castagnoli93.
  32. config ADK_KERNEL_CRC_CCITT
  33. prompt "CRC-CCITT library functions"
  34. tristate
  35. default n
  36. help
  37. This module provides CRC-CCITT library functions for kernel
  38. modules built outside the kernel.
  39. config ADK_KERNEL_ZLIB_DEFLATE
  40. tristate
  41. default n
  42. config ADK_KERNEL_ZLIB_INFLATE
  43. tristate
  44. default n
  45. config ADK_KERNEL_LZO_COMPRESS
  46. tristate
  47. default n
  48. config ADK_KERNEL_LZO_DECOMPRESS
  49. tristate
  50. default n
  51. endmenu