Config.in.lib 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. menu "Library Routines"
  2. config ADK_KERNEL_CRC16
  3. bool
  4. default n
  5. config ADK_KERNEL_CRC32
  6. bool
  7. default y
  8. config ADK_KPACKAGE_KMOD_CRC_ITU_T
  9. prompt "kmod-crc-itu-t...................... CRC ITU-T V.41 functions"
  10. tristate
  11. default n
  12. help
  13. This option is provided for the case where no in-kernel-tree
  14. modules require CRC ITU-T V.41 functions, but a module built outside
  15. the kernel tree does. Such modules that use library CRC ITU-T V.41
  16. functions require M here.
  17. config ADK_KPACKAGE_KMOD_CRC16
  18. prompt "kmod-crc16.......................... provide CRC16 library functions"
  19. tristate
  20. depends on ! ADK_KERNEL_CRC16
  21. default n
  22. help
  23. config ADK_KPACKAGE_KMOD_LIBCRC32C
  24. prompt "kmod-libcrc32c...................... 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_KPACKAGE_KMOD_CRC_CCITT
  33. prompt "kmod-crc-ccitt...................... provide CRC-CCITT library functions"
  34. tristate
  35. default n
  36. help
  37. This module provides CRC-CCITT library functions for kernel modules built
  38. outside the kernel.
  39. endmenu