Kconfig 4.7 KB

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