Config.in.lib 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. menu "Library Routines"
  2. config ADK_KERNEL_CRC16
  3. bool
  4. default n
  5. config ADK_KERNEL_CRC32
  6. bool
  7. default n
  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_CRC32
  24. prompt "kmod-crc32.......................... provide CRC32 library functions"
  25. tristate
  26. depends on ! ADK_KERNEL_CRC32
  27. default n
  28. help
  29. config ADK_KPACKAGE_KMOD_LIBCRC32C
  30. prompt "kmod-libcrc32c...................... CRC32c Cyclic Redundancy-Check"
  31. tristate
  32. default n
  33. help
  34. This option is provided for the case where no in-kernel-tree
  35. modules require CRC32c functions, but a module built outside the
  36. kernel tree does. Such modules that use library CRC32c functions
  37. require M here. See Castagnoli93.
  38. config ADK_KPACKAGE_KMOD_CRC_CCITT
  39. prompt "kmod-crc-ccitt...................... provide CRC-CCITT library functions"
  40. tristate
  41. default n
  42. help
  43. This module provides CRC-CCITT library functions for kernel modules built
  44. outside the kernel.
  45. endmenu