Kconfig 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #
  2. # ISDN device configuration
  3. #
  4. menuconfig ISDN
  5. bool "ISDN support"
  6. depends on NET
  7. depends on !S390
  8. ---help---
  9. ISDN ("Integrated Services Digital Networks", called RNIS in France)
  10. is a special type of fully digital telephone service; it's mostly
  11. used to connect to your Internet service provider (with SLIP or
  12. PPP). The main advantage is that the speed is higher than ordinary
  13. modem/telephone connections, and that you can have voice
  14. conversations while downloading stuff. It only works if your
  15. computer is equipped with an ISDN card and both you and your service
  16. provider purchased an ISDN line from the phone company. For
  17. details, read <http://www.alumni.caltech.edu/~dank/isdn/> on the WWW.
  18. Select this option if you want your kernel to support ISDN.
  19. if ISDN
  20. source "drivers/isdn/mISDN/Kconfig"
  21. menuconfig ISDN_I4L
  22. tristate "Old ISDN4Linux (deprecated)"
  23. ---help---
  24. This driver allows you to use an ISDN adapter for networking
  25. connections and as dialin/out device. The isdn-tty's have a built
  26. in AT-compatible modem emulator. Network devices support autodial,
  27. channel-bundling, callback and caller-authentication without having
  28. a daemon running. A reduced T.70 protocol is supported with tty's
  29. suitable for German BTX. On D-Channel, the protocols EDSS1
  30. (Euro-ISDN) and 1TR6 (German style) are supported. See
  31. <file:Documentation/isdn/README> for more information.
  32. ISDN support in the linux kernel is moving towards a new API,
  33. called CAPI (Common ISDN Application Programming Interface).
  34. Therefore the old ISDN4Linux layer will eventually become obsolete.
  35. It is still available, though, for use with adapters that are not
  36. supported by the new CAPI subsystem yet.
  37. if ISDN_I4L
  38. source "drivers/isdn/i4l/Kconfig"
  39. endif
  40. menuconfig ISDN_CAPI
  41. tristate "CAPI 2.0 subsystem"
  42. help
  43. This provides the CAPI (Common ISDN Application Programming
  44. Interface, a standard making it easy for programs to access ISDN
  45. hardware, see <http://www.capi.org/>. This is needed for AVM's set
  46. of active ISDN controllers like B1, T1, M1.
  47. if ISDN_CAPI
  48. source "drivers/isdn/capi/Kconfig"
  49. source "drivers/isdn/hardware/Kconfig"
  50. endif # ISDN_CAPI
  51. endif # ISDN