Kconfig 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. menuconfig ISDN_DRV_GIGASET
  2. tristate "Siemens Gigaset support"
  3. select CRC_CCITT
  4. select BITREVERSE
  5. help
  6. This driver supports the Siemens Gigaset SX205/255 family of
  7. ISDN DECT bases, including the predecessors Gigaset 3070/3075
  8. and 4170/4175 and their T-Com versions Sinus 45isdn and Sinus
  9. 721X.
  10. If you have one of these devices, say M here and for at least
  11. one of the connection specific parts that follow.
  12. This will build a module called "gigaset".
  13. Note: If you build your ISDN subsystem (ISDN_CAPI or ISDN_I4L)
  14. as a module, you have to build this driver as a module too,
  15. otherwise the Gigaset device won't show up as an ISDN device.
  16. if ISDN_DRV_GIGASET
  17. config GIGASET_CAPI
  18. bool "Gigaset CAPI support"
  19. depends on ISDN_CAPI='y'||(ISDN_CAPI='m'&&ISDN_DRV_GIGASET='m')
  20. default ISDN_I4L='n'
  21. help
  22. Build the Gigaset driver as a CAPI 2.0 driver interfacing with
  23. the Kernel CAPI subsystem. To use it with the old ISDN4Linux
  24. subsystem you'll have to enable the capidrv glue driver.
  25. (select ISDN_CAPI_CAPIDRV.)
  26. Say N to build the old native ISDN4Linux variant.
  27. If unsure, say Y.
  28. config GIGASET_I4L
  29. bool
  30. depends on ISDN_I4L='y'||(ISDN_I4L='m'&&ISDN_DRV_GIGASET='m')
  31. default !GIGASET_CAPI
  32. config GIGASET_DUMMYLL
  33. bool
  34. default !GIGASET_CAPI&&!GIGASET_I4L
  35. config GIGASET_BASE
  36. tristate "Gigaset base station support"
  37. depends on USB
  38. help
  39. Say M here if you want to use the USB interface of the Gigaset
  40. base for connection to your system.
  41. This will build a module called "bas_gigaset".
  42. config GIGASET_M105
  43. tristate "Gigaset M105 support"
  44. depends on USB
  45. help
  46. Say M here if you want to connect to the Gigaset base via DECT
  47. using a Gigaset M105 (Sinus 45 Data 2) USB DECT device.
  48. This will build a module called "usb_gigaset".
  49. config GIGASET_M101
  50. tristate "Gigaset M101 support"
  51. help
  52. Say M here if you want to connect to the Gigaset base via DECT
  53. using a Gigaset M101 (Sinus 45 Data 1) RS232 DECT device.
  54. This will build a module called "ser_gigaset".
  55. config GIGASET_DEBUG
  56. bool "Gigaset debugging"
  57. help
  58. This enables debugging code in the Gigaset drivers.
  59. If in doubt, say yes.
  60. endif # ISDN_DRV_GIGASET