Config.in.lib 1.2 KB

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