Kconfig 2.2 KB

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