Kconfig 2.1 KB

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