Config.in.lib 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. menu "Library Routines"
  2. config ADK_KERNEL_CRC32
  3. bool
  4. default n
  5. config ADK_KPACKAGE_KMOD_CRC_ITU_T
  6. prompt "kmod-crc-itu-t...................... CRC ITU-T V.41 functions"
  7. tristate
  8. default n
  9. help
  10. This option is provided for the case where no in-kernel-tree
  11. modules require CRC ITU-T V.41 functions, but a module built outside
  12. the kernel tree does. Such modules that use library CRC ITU-T V.41
  13. functions require M here.
  14. config ADK_KPACKAGE_KMOD_CRC32
  15. prompt "kmod-crc32.......................... provide CRC32 library functions"
  16. tristate
  17. depends ! ADK_KERNEL_CRC32
  18. default n
  19. help
  20. config ADK_KPACKAGE_KMOD_LIBCRC32C
  21. prompt "kmod-libcrc32c...................... CRC32c Cyclic Redundancy-Check"
  22. tristate
  23. default n
  24. help
  25. This option is provided for the case where no in-kernel-tree
  26. modules require CRC32c functions, but a module built outside the
  27. kernel tree does. Such modules that use library CRC32c functions
  28. require M here. See Castagnoli93.
  29. config ADK_KPACKAGE_KMOD_CRC_CCITT
  30. prompt "kmod-crc-ccitt...................... provide CRC-CCITT library functions"
  31. tristate
  32. default n
  33. help
  34. This module provides CRC-CCITT library functions for kernel modules built
  35. outside the kernel.
  36. endmenu