Kconfig 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. #
  2. # Old ISDN4Linux config
  3. #
  4. config ISDN_PPP
  5. bool "Support synchronous PPP"
  6. depends on INET
  7. help
  8. Over digital connections such as ISDN, there is no need to
  9. synchronize sender and recipient's clocks with start and stop bits
  10. as is done over analog telephone lines. Instead, one can use
  11. "synchronous PPP". Saying Y here will include this protocol. This
  12. protocol is used by Cisco and Sun for example. So you want to say Y
  13. here if the other end of your ISDN connection supports it. You will
  14. need a special version of pppd (called ipppd) for using this
  15. feature. See <file:Documentation/isdn/README.syncppp> and
  16. <file:Documentation/isdn/syncPPP.FAQ> for more information.
  17. config ISDN_PPP_VJ
  18. bool "Use VJ-compression with synchronous PPP"
  19. depends on ISDN_PPP
  20. help
  21. This enables Van Jacobson header compression for synchronous PPP.
  22. Say Y if the other end of the connection supports it.
  23. config ISDN_MPP
  24. bool "Support generic MP (RFC 1717)"
  25. depends on ISDN_PPP
  26. help
  27. With synchronous PPP enabled, it is possible to increase throughput
  28. by bundling several ISDN-connections, using this protocol. See
  29. <file:Documentation/isdn/README.syncppp> for more information.
  30. config IPPP_FILTER
  31. bool "Filtering for synchronous PPP"
  32. depends on ISDN_PPP
  33. help
  34. Say Y here if you want to be able to filter the packets passing over
  35. IPPP interfaces. This allows you to control which packets count as
  36. activity (i.e. which packets will reset the idle timer or bring up
  37. a demand-dialled link) and which packets are to be dropped entirely.
  38. You need to say Y here if you wish to use the pass-filter and
  39. active-filter options to ipppd.
  40. config ISDN_PPP_BSDCOMP
  41. tristate "Support BSD compression"
  42. depends on ISDN_PPP
  43. help
  44. Support for the BSD-Compress compression method for PPP, which uses
  45. the LZW compression method to compress each PPP packet before it is
  46. sent over the wire. The machine at the other end of the PPP link
  47. (usually your ISP) has to support the BSD-Compress compression
  48. method as well for this to be useful. Even if they don't support it,
  49. it is safe to say Y here.
  50. config ISDN_AUDIO
  51. bool "Support audio via ISDN"
  52. help
  53. If you say Y here, the modem-emulator will support a subset of the
  54. EIA Class 8 Voice commands. Using a getty with voice-support
  55. (mgetty+sendfax by <gert@greenie.muc.de> with an extension, available
  56. with the ISDN utility package for example), you will be able to use
  57. your Linux box as an ISDN-answering machine. Of course, this must be
  58. supported by the lowlevel driver also. Currently, the HiSax driver
  59. is the only voice-supporting driver. See
  60. <file:Documentation/isdn/README.audio> for more information.
  61. config ISDN_TTY_FAX
  62. bool "Support AT-Fax Class 1 and 2 commands"
  63. depends on ISDN_AUDIO
  64. help
  65. If you say Y here, the modem-emulator will support a subset of the
  66. Fax Class 1 and 2 commands. Using a getty with fax-support
  67. (mgetty+sendfax, hylafax), you will be able to use your Linux box as
  68. an ISDN-fax-machine. This must be supported by the lowlevel driver
  69. also. See <file:Documentation/isdn/README.fax> for more information.
  70. config ISDN_X25
  71. bool "X.25 PLP on top of ISDN"
  72. depends on X25
  73. help
  74. This feature provides the X.25 protocol over ISDN connections.
  75. See <file:Documentation/isdn/README.x25> for more information
  76. if you are thinking about using this.
  77. menu "ISDN feature submodules"
  78. depends on ISDN
  79. config ISDN_DRV_LOOP
  80. tristate "isdnloop support"
  81. depends on BROKEN_ON_SMP
  82. help
  83. This driver provides a virtual ISDN card. Its primary purpose is
  84. testing of linklevel features or configuration without getting
  85. charged by your service-provider for lots of phone calls.
  86. You need will need the loopctrl utility from the latest isdn4k-utils
  87. package to set up this driver.
  88. config ISDN_DIVERSION
  89. tristate "Support isdn diversion services"
  90. depends on ISDN && ISDN_I4L
  91. help
  92. This option allows you to use some supplementary diversion
  93. services in conjunction with the HiSax driver on an EURO/DSS1
  94. line.
  95. Supported options are CD (call deflection), CFU (Call forward
  96. unconditional), CFB (Call forward when busy) and CFNR (call forward
  97. not reachable). Additionally the actual CFU, CFB and CFNR state may
  98. be interrogated.
  99. The use of CFU, CFB, CFNR and interrogation may be limited to some
  100. countries. The keypad protocol is still not implemented. CD should
  101. work in all countries if the service has been subscribed to.
  102. Please read the file <file:Documentation/isdn/README.diversion>.
  103. endmenu
  104. comment "ISDN4Linux hardware drivers"
  105. depends on NET && ISDN && ISDN_I4L
  106. source "drivers/isdn/hisax/Kconfig"
  107. menu "Active cards"
  108. depends on NET && ISDN && ISDN_I4L!=n
  109. source "drivers/isdn/icn/Kconfig"
  110. source "drivers/isdn/pcbit/Kconfig"
  111. source "drivers/isdn/sc/Kconfig"
  112. source "drivers/isdn/act2000/Kconfig"
  113. source "drivers/isdn/hysdn/Kconfig"
  114. endmenu