Kconfig 4.8 KB

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