Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #
  2. # CAIF net configurations
  3. #
  4. #menu "CAIF Support"
  5. comment "CAIF Support"
  6. menuconfig CAIF
  7. tristate "Enable CAIF support"
  8. select CRC_CCITT
  9. default n
  10. ---help---
  11. The "Communication CPU to Application CPU Interface" (CAIF) is a packet
  12. based connection-oriented MUX protocol developed by ST-Ericsson for use
  13. with its modems. It is accessed from user space as sockets (PF_CAIF).
  14. Say Y (or M) here if you build for a phone product (e.g. Android or
  15. MeeGo ) that uses CAIF as transport, if unsure say N.
  16. If you select to build it as module then CAIF_NETDEV also needs to be
  17. built as modules. You will also need to say yes to any CAIF physical
  18. devices that your platform requires.
  19. See Documentation/networking/caif for a further explanation on how to
  20. use and configure CAIF.
  21. if CAIF
  22. config CAIF_DEBUG
  23. bool "Enable Debug"
  24. default n
  25. --- help ---
  26. Enable the inclusion of debug code in the CAIF stack.
  27. Be aware that doing this will impact performance.
  28. If unsure say N.
  29. config CAIF_NETDEV
  30. tristate "CAIF GPRS Network device"
  31. default CAIF
  32. ---help---
  33. Say Y if you will be using a CAIF based GPRS network device.
  34. This can be either built-in or a loadable module,
  35. If you select to build it as a built-in then the main CAIF device must
  36. also be a built-in.
  37. If unsure say Y.
  38. endif
  39. #endmenu