Linux Audio

Check our new training course

Loading...
v6.13.7
  1# SPDX-License-Identifier: GPL-2.0-only
  2#
  3# wan devices configuration
  4#
  5
  6menuconfig WAN
  7	bool "Wan interfaces support"
  8	help
  9	  Wide Area Networks (WANs), such as X.25, Frame Relay and leased
 10	  lines, are used to interconnect Local Area Networks (LANs) over vast
 11	  distances with data transfer rates significantly higher than those
 12	  achievable with commonly used asynchronous modem connections.
 13
 14	  Usually, a quite expensive external device called a `WAN router' is
 15	  needed to connect to a WAN. As an alternative, a relatively
 16	  inexpensive WAN interface card can allow your Linux box to directly
 17	  connect to a WAN.
 18
 19	  If you have one of those cards and wish to use it under Linux,
 20	  say Y here and also to the WAN driver for your card.
 21
 22	  If unsure, say N.
 23
 24if WAN
 25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 26# Generic HDLC
 27config HDLC
 28	tristate "Generic HDLC layer"
 29	help
 30	  Say Y to this option if your Linux box contains a WAN (Wide Area
 31	  Network) card supported by this driver and you are planning to
 32	  connect the box to a WAN.
 33
 34	  You will need supporting software from
 35	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
 36	  Generic HDLC driver currently supports raw HDLC, Cisco HDLC, Frame
 37	  Relay, synchronous Point-to-Point Protocol (PPP) and X.25.
 38
 39	  To compile this driver as a module, choose M here: the
 40	  module will be called hdlc.
 41
 42	  If unsure, say N.
 43
 44config HDLC_RAW
 45	tristate "Raw HDLC support"
 46	depends on HDLC
 47	help
 48	  Generic HDLC driver supporting raw HDLC over WAN connections.
 49
 50	  If unsure, say N.
 51
 52config HDLC_RAW_ETH
 53	tristate "Raw HDLC Ethernet device support"
 54	depends on HDLC
 55	help
 56	  Generic HDLC driver supporting raw HDLC Ethernet device emulation
 57	  over WAN connections.
 58
 59	  You will need it for Ethernet over HDLC bridges.
 60
 61	  If unsure, say N.
 62
 63config HDLC_CISCO
 64	tristate "Cisco HDLC support"
 65	depends on HDLC
 66	help
 67	  Generic HDLC driver supporting Cisco HDLC over WAN connections.
 68
 69	  If unsure, say N.
 70
 71config HDLC_FR
 72	tristate "Frame Relay support"
 73	depends on HDLC
 74	help
 75	  Generic HDLC driver supporting Frame Relay over WAN connections.
 76
 77	  If unsure, say N.
 78
 79config HDLC_PPP
 80	tristate "Synchronous Point-to-Point Protocol (PPP) support"
 81	depends on HDLC
 82	help
 83	  Generic HDLC driver supporting PPP over WAN connections.
 84
 85	  If unsure, say N.
 86
 87config HDLC_X25
 88	tristate "X.25 protocol support"
 89	depends on HDLC && (LAPB=m && HDLC=m || LAPB=y)
 90	help
 91	  Generic HDLC driver supporting X.25 over WAN connections.
 92
 93	  If unsure, say N.
 94
 95comment "X.25/LAPB support is disabled"
 96	depends on HDLC && (LAPB!=m || HDLC!=m) && LAPB!=y
 97
 98source "drivers/net/wan/framer/Kconfig"
 99
100config PCI200SYN
101	tristate "Goramo PCI200SYN support"
102	depends on HDLC && PCI
103	help
104	  Driver for PCI200SYN cards by Goramo sp. j.
105
106	  If you have such a card, say Y here and see
107	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
108
109	  To compile this as a module, choose M here: the
110	  module will be called pci200syn.
111
112	  If unsure, say N.
113
114config WANXL
115	tristate "SBE Inc. wanXL support"
116	depends on HDLC && PCI
117	help
118	  Driver for wanXL PCI cards by SBE Inc.
119
120	  If you have such a card, say Y here and see
121	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
122
123	  To compile this as a module, choose M here: the
124	  module will be called wanxl.
125
126	  If unsure, say N.
127
128config WANXL_BUILD_FIRMWARE
129	bool "rebuild wanXL firmware"
130	depends on WANXL && !PREVENT_FIRMWARE_BUILD
131	help
132	  Allows you to rebuild firmware run by the QUICC processor.
133	  It requires m68k toolchains and hexdump programs.
134
135	  You should never need this option, say N.
136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137config PC300TOO
138	tristate "Cyclades PC300 RSV/X21 alternative support"
139	depends on HDLC && PCI
140	help
141	  Alternative driver for PC300 RSV/X21 PCI cards made by
142	  Cyclades, Inc. If you have such a card, say Y here and see
143	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
144
145	  To compile this as a module, choose M here: the module
146	  will be called pc300too.
147
148	  If unsure, say N here.
149
150config N2
151	tristate "SDL RISCom/N2 support"
152	depends on HDLC && ISA
153	help
154	  Driver for RISCom/N2 single or dual channel ISA cards by
155	  SDL Communications Inc.
156
157	  If you have such a card, say Y here and see
158	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
159
160	  Note that N2csu and N2dds cards are not supported by this driver.
161
162	  To compile this driver as a module, choose M here: the module
163	  will be called n2.
164
165	  If unsure, say N.
166
167config C101
168	tristate "Moxa C101 support"
169	depends on HDLC && ISA
170	help
171	  Driver for C101 SuperSync ISA cards by Moxa Technologies Co., Ltd.
172
173	  If you have such a card, say Y here and see
174	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
175
176	  To compile this driver as a module, choose M here: the
177	  module will be called c101.
178
179	  If unsure, say N.
180
181config FARSYNC
182	tristate "FarSync T-Series support"
183	depends on HDLC && PCI && HAS_IOPORT
184	help
185	  Support for the FarSync T-Series X.21 (and V.35/V.24) cards by
186	  FarSite Communications Ltd.
187
188	  Synchronous communication is supported on all ports at speeds up to
189	  8Mb/s (128K on V.24) using synchronous PPP, Cisco HDLC, raw HDLC,
190	  Frame Relay or X.25/LAPB.
191
192	  If you want the module to be automatically loaded when the interface
193	  is referenced then you should add "alias hdlcX farsync" to a file
194	  in /etc/modprobe.d/ for each interface, where X is 0, 1, 2, ..., or
195	  simply use "alias hdlc* farsync" to indicate all of them.
196
197	  To compile this driver as a module, choose M here: the
198	  module will be called farsync.
199
200config FSL_QMC_HDLC
201	tristate "Freescale QMC HDLC support"
202	depends on HDLC
203	depends on CPM_QMC
204	help
205	  HDLC support using the Freescale QUICC Multichannel Controller (QMC).
 
 
 
 
206
207	  To compile this driver as a module, choose M here: the
208	  module will be called fsl_qmc_hdlc.
209
210	  If unsure, say N.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211
212config FSL_UCC_HDLC
213	tristate "Freescale QUICC Engine HDLC support"
214	depends on HDLC
215	depends on QUICC_ENGINE
 
216	help
217	  Driver for Freescale QUICC Engine HDLC controller. The driver
218	  supports HDLC in NMSI and TDM mode.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
220	  To compile this driver as a module, choose M here: the
221	  module will be called fsl_ucc_hdlc.
222
223config SLIC_DS26522
224	tristate "Slic Maxim ds26522 card support"
225	depends on SPI
226	depends on FSL_SOC || ARCH_MXC || ARCH_LAYERSCAPE || COMPILE_TEST
227	select BITREVERSE
228	help
229	  This module initializes and configures the slic maxim card
230	  in T1 or E1 mode.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
231
232	  To compile this driver as a module, choose M here: the
233	  module will be called slic_ds26522.
234
235config IXP4XX_HSS
236	tristate "Intel IXP4xx HSS (synchronous serial port) support"
237	depends on HDLC && IXP4XX_NPE && IXP4XX_QMGR
238	depends on ARCH_IXP4XX && OF
239	select MFD_SYSCON
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240	help
241	  Say Y here if you want to use built-in HSS ports
242	  on IXP4xx processor.
 
243
244# X.25 network drivers
245config LAPBETHER
246	tristate "LAPB over Ethernet driver"
247	depends on LAPB && X25
248	help
249	  Driver for a pseudo device (typically called /dev/lapb0) which allows
250	  you to open an LAPB point-to-point connection to some other computer
251	  on your Ethernet network.
252
253	  In order to do this, you need to say Y or M to the driver for your
254	  Ethernet card as well as to "LAPB Data Link Driver".
255
256	  To compile this driver as a module, choose M here: the
257	  module will be called lapbether.
258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
260	  If unsure, say N.
261
262endif # WAN
v3.1
 
  1#
  2# wan devices configuration
  3#
  4
  5menuconfig WAN
  6	bool "Wan interfaces support"
  7	---help---
  8	  Wide Area Networks (WANs), such as X.25, Frame Relay and leased
  9	  lines, are used to interconnect Local Area Networks (LANs) over vast
 10	  distances with data transfer rates significantly higher than those
 11	  achievable with commonly used asynchronous modem connections.
 12
 13	  Usually, a quite expensive external device called a `WAN router' is
 14	  needed to connect to a WAN. As an alternative, a relatively
 15	  inexpensive WAN interface card can allow your Linux box to directly
 16	  connect to a WAN.
 17
 18	  If you have one of those cards and wish to use it under Linux,
 19	  say Y here and also to the WAN driver for your card.
 20
 21	  If unsure, say N.
 22
 23if WAN
 24
 25# There is no way to detect a comtrol sv11 - force it modular for now.
 26config HOSTESS_SV11
 27	tristate "Comtrol Hostess SV-11 support"
 28	depends on ISA && m && ISA_DMA_API && INET && HDLC
 29	help
 30	  Driver for Comtrol Hostess SV-11 network card which
 31	  operates on low speed synchronous serial links at up to
 32	  256Kbps, supporting PPP and Cisco HDLC.
 33
 34	  The driver will be compiled as a module: the
 35	  module will be called hostess_sv11.
 36
 37# The COSA/SRP driver has not been tested as non-modular yet.
 38config COSA
 39	tristate "COSA/SRP sync serial boards support"
 40	depends on ISA && m && ISA_DMA_API && HDLC
 41	---help---
 42	  Driver for COSA and SRP synchronous serial boards.
 43
 44	  These boards allow to connect synchronous serial devices (for example
 45	  base-band modems, or any other device with the X.21, V.24, V.35 or
 46	  V.36 interface) to your Linux box. The cards can work as the
 47	  character device, synchronous PPP network device, or the Cisco HDLC
 48	  network device.
 49
 50	  You will need user-space utilities COSA or SRP boards for downloading
 51 	  the firmware to the cards and to set them up. Look at the
 52	  <http://www.fi.muni.cz/~kas/cosa/> for more information. You can also
 53	  read the comment at the top of the <file:drivers/net/wan/cosa.c> for
 54	  details about the cards and the driver itself.
 55
 56	  The driver will be compiled as a module: the
 57	  module will be called cosa.
 58
 59#
 60# Lan Media's board. Currently 1000, 1200, 5200, 5245
 61#
 62config LANMEDIA
 63	tristate "LanMedia Corp. SSI/V.35, T1/E1, HSSI, T3 boards"
 64	depends on PCI && VIRT_TO_BUS && HDLC
 65	---help---
 66	  Driver for the following Lan Media family of serial boards:
 67
 68	  - LMC 1000 board allows you to connect synchronous serial devices
 69	  (for example base-band modems, or any other device with the X.21,
 70	  V.24, V.35 or V.36 interface) to your Linux box.
 71
 72	  - LMC 1200 with on board DSU board allows you to connect your Linux
 73	  box directly to a T1 or E1 circuit.
 74
 75	  - LMC 5200 board provides a HSSI interface capable of running up to
 76	  52 Mbits per second.
 77
 78	  - LMC 5245 board connects directly to a T3 circuit saving the
 79	  additional external hardware.
 80
 81	  To change setting such as clock source you will need lmcctl.
 82	  It is available at <ftp://ftp.lanmedia.com/> (broken link).
 83
 84	  To compile this driver as a module, choose M here: the
 85	  module will be called lmc.
 86
 87# There is no way to detect a Sealevel board. Force it modular
 88config SEALEVEL_4021
 89	tristate "Sealevel Systems 4021 support"
 90	depends on ISA && m && ISA_DMA_API && INET && HDLC
 91	help
 92	  This is a driver for the Sealevel Systems ACB 56 serial I/O adapter.
 93
 94	  The driver will be compiled as a module: the
 95	  module will be called sealevel.
 96
 97# Generic HDLC
 98config HDLC
 99	tristate "Generic HDLC layer"
100	help
101	  Say Y to this option if your Linux box contains a WAN (Wide Area
102	  Network) card supported by this driver and you are planning to
103	  connect the box to a WAN.
104
105	  You will need supporting software from
106	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
107	  Generic HDLC driver currently supports raw HDLC, Cisco HDLC, Frame
108	  Relay, synchronous Point-to-Point Protocol (PPP) and X.25.
109
110 	  To compile this driver as a module, choose M here: the
111	  module will be called hdlc.
112
113	  If unsure, say N.
114
115config HDLC_RAW
116	tristate "Raw HDLC support"
117	depends on HDLC
118	help
119	  Generic HDLC driver supporting raw HDLC over WAN connections.
120
121	  If unsure, say N.
122
123config HDLC_RAW_ETH
124	tristate "Raw HDLC Ethernet device support"
125	depends on HDLC
126	help
127	  Generic HDLC driver supporting raw HDLC Ethernet device emulation
128	  over WAN connections.
129
130	  You will need it for Ethernet over HDLC bridges.
131
132	  If unsure, say N.
133
134config HDLC_CISCO
135	tristate "Cisco HDLC support"
136	depends on HDLC
137	help
138	  Generic HDLC driver supporting Cisco HDLC over WAN connections.
139
140	  If unsure, say N.
141
142config HDLC_FR
143	tristate "Frame Relay support"
144	depends on HDLC
145	help
146	  Generic HDLC driver supporting Frame Relay over WAN connections.
147
148	  If unsure, say N.
149
150config HDLC_PPP
151	tristate "Synchronous Point-to-Point Protocol (PPP) support"
152	depends on HDLC
153	help
154	  Generic HDLC driver supporting PPP over WAN connections.
155
156	  If unsure, say N.
157
158config HDLC_X25
159	tristate "X.25 protocol support"
160	depends on HDLC && (LAPB=m && HDLC=m || LAPB=y)
161	help
162	  Generic HDLC driver supporting X.25 over WAN connections.
163
164	  If unsure, say N.
165
166comment "X.25/LAPB support is disabled"
167	depends on HDLC && (LAPB!=m || HDLC!=m) && LAPB!=y
168
 
 
169config PCI200SYN
170	tristate "Goramo PCI200SYN support"
171	depends on HDLC && PCI
172	help
173	  Driver for PCI200SYN cards by Goramo sp. j.
174
175	  If you have such a card, say Y here and see
176	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
177
178	  To compile this as a module, choose M here: the
179	  module will be called pci200syn.
180
181	  If unsure, say N.
182
183config WANXL
184	tristate "SBE Inc. wanXL support"
185	depends on HDLC && PCI
186	help
187	  Driver for wanXL PCI cards by SBE Inc.
188
189	  If you have such a card, say Y here and see
190	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
191
192	  To compile this as a module, choose M here: the
193	  module will be called wanxl.
194
195	  If unsure, say N.
196
197config WANXL_BUILD_FIRMWARE
198	bool "rebuild wanXL firmware"
199	depends on WANXL && !PREVENT_FIRMWARE_BUILD
200	help
201	  Allows you to rebuild firmware run by the QUICC processor.
202	  It requires as68k, ld68k and hexdump programs.
203
204	  You should never need this option, say N.
205
206config PC300
207	tristate "Cyclades-PC300 support (RS-232/V.35, X.21, T1/E1 boards)"
208	depends on HDLC && PCI && BROKEN
209	---help---
210	  This driver is broken because of struct tty_driver change.
211
212	  Driver for the Cyclades-PC300 synchronous communication boards.
213
214	  These boards provide synchronous serial interfaces to your
215	  Linux box (interfaces currently available are RS-232/V.35, X.21 and
216	  T1/E1). If you wish to support Multilink PPP, please select the
217	  option later and read the file README.mlppp provided by PC300
218	  package.
219
220	  To compile this as a module, choose M here: the module
221	  will be called pc300.
222
223	  If unsure, say N.
224
225config PC300_MLPPP
226	bool "Cyclades-PC300 MLPPP support"
227	depends on PC300 && PPP_MULTILINK && PPP_SYNC_TTY && HDLC_PPP
228	help
229	  Multilink PPP over the PC300 synchronous communication boards.
230
231comment "Cyclades-PC300 MLPPP support is disabled."
232	depends on HDLC && PC300 && (PPP=n || !PPP_MULTILINK || PPP_SYNC_TTY=n || !HDLC_PPP)
233
234comment "Refer to the file README.mlppp, provided by PC300 package."
235	depends on HDLC && PC300 && (PPP=n || !PPP_MULTILINK || PPP_SYNC_TTY=n || !HDLC_PPP)
236
237config PC300TOO
238	tristate "Cyclades PC300 RSV/X21 alternative support"
239	depends on HDLC && PCI
240	help
241	  Alternative driver for PC300 RSV/X21 PCI cards made by
242	  Cyclades, Inc. If you have such a card, say Y here and see
243	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
244
245	  To compile this as a module, choose M here: the module
246	  will be called pc300too.
247
248	  If unsure, say N here.
249
250config N2
251	tristate "SDL RISCom/N2 support"
252	depends on HDLC && ISA
253	help
254	  Driver for RISCom/N2 single or dual channel ISA cards by
255	  SDL Communications Inc.
256
257	  If you have such a card, say Y here and see
258	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
259
260	  Note that N2csu and N2dds cards are not supported by this driver.
261
262	  To compile this driver as a module, choose M here: the module
263	  will be called n2.
264
265	  If unsure, say N.
266
267config C101
268	tristate "Moxa C101 support"
269	depends on HDLC && ISA
270	help
271	  Driver for C101 SuperSync ISA cards by Moxa Technologies Co., Ltd.
272
273	  If you have such a card, say Y here and see
274	  <http://www.kernel.org/pub/linux/utils/net/hdlc/>.
275
276	  To compile this driver as a module, choose M here: the
277	  module will be called c101.
278
279	  If unsure, say N.
280
281config FARSYNC
282	tristate "FarSync T-Series support"
283	depends on HDLC && PCI
284	---help---
285	  Support for the FarSync T-Series X.21 (and V.35/V.24) cards by
286	  FarSite Communications Ltd.
287
288	  Synchronous communication is supported on all ports at speeds up to
289	  8Mb/s (128K on V.24) using synchronous PPP, Cisco HDLC, raw HDLC,
290	  Frame Relay or X.25/LAPB.
291
292	  If you want the module to be automatically loaded when the interface
293	  is referenced then you should add "alias hdlcX farsync" to
294	  /etc/modprobe.conf for each interface, where X is 0, 1, 2, ..., or
295	  simply use "alias hdlc* farsync" to indicate all of them.
296
297	  To compile this driver as a module, choose M here: the
298	  module will be called farsync.
299
300config DSCC4
301	tristate "Etinc PCISYNC serial board support"
302	depends on HDLC && PCI && m
303	help
304	  Driver for Etinc PCISYNC boards based on the Infineon (ex. Siemens)
305	  DSCC4 chipset.
306
307	  This is supposed to work with the four port card. Take a look at
308	  <http://www.cogenit.fr/dscc4/> for further information about the
309	  driver.
310
311	  To compile this driver as a module, choose M here: the
312	  module will be called dscc4.
313
314config DSCC4_PCISYNC
315	bool "Etinc PCISYNC features"
316	depends on DSCC4
317	help
318	  Due to Etinc's design choice for its PCISYNC cards, some operations
319	  are only allowed on specific ports of the DSCC4. This option is the
320	  only way for the driver to know that it shouldn't return a success
321	  code for these operations.
322
323	  Please say Y if your card is an Etinc's PCISYNC.
324
325config DSCC4_PCI_RST
326	bool "Hard reset support"
327	depends on DSCC4
328	help
329	  Various DSCC4 bugs forbid any reliable software reset of the ASIC.
330	  As a replacement, some vendors provide a way to assert the PCI #RST
331	  pin of DSCC4 through the GPIO port of the card. If you choose Y,
332	  the driver will make use of this feature before module removal
333	  (i.e. rmmod). The feature is known to be available on Commtech's
334	  cards. Contact your manufacturer for details.
335
336	  Say Y if your card supports this feature.
337
338config IXP4XX_HSS
339	tristate "Intel IXP4xx HSS (synchronous serial port) support"
340	depends on HDLC && ARM && ARCH_IXP4XX && IXP4XX_NPE && IXP4XX_QMGR
341	help
342	  Say Y here if you want to use built-in HSS ports
343	  on IXP4xx processor.
344
345config DLCI
346	tristate "Frame Relay DLCI support"
347	---help---
348	  Support for the Frame Relay protocol.
349
350	  Frame Relay is a fast low-cost way to connect to a remote Internet
351	  access provider or to form a private wide area network. The one
352	  physical line from your box to the local "switch" (i.e. the entry
353	  point to the Frame Relay network, usually at the phone company) can
354	  carry several logical point-to-point connections to other computers
355	  connected to the Frame Relay network. For a general explanation of
356	  the protocol, check out <http://www.mplsforum.org/>.
357
358	  To use frame relay, you need supporting hardware (called FRAD) and
359	  certain programs from the net-tools package as explained in
360	  <file:Documentation/networking/framerelay.txt>.
361
362	  To compile this driver as a module, choose M here: the
363	  module will be called dlci.
364
365config DLCI_MAX
366	int "Max DLCI per device"
367	depends on DLCI
368	default "8"
 
369	help
370	  How many logical point-to-point frame relay connections (the
371	  identifiers of which are called DCLIs) should be handled by each
372	  of your hardware frame relay access devices.
373
374	  Go with the default.
375
376config SDLA
377	tristate "SDLA (Sangoma S502/S508) support"
378	depends on DLCI && ISA
379	help
380	  Driver for the Sangoma S502A, S502E, and S508 Frame Relay Access
381	  Devices.
382
383	  These are multi-protocol cards, but only Frame Relay is supported
384	  by the driver at this time. Please read
385	  <file:Documentation/networking/framerelay.txt>.
386
387	  To compile this driver as a module, choose M here: the
388	  module will be called sdla.
389
390# Wan router core.
391config WAN_ROUTER_DRIVERS
392	tristate "WAN router drivers"
393	depends on WAN_ROUTER
394	---help---
395	  Connect LAN to WAN via Linux box.
396
397	  Select driver your card and remember to say Y to "Wan Router."
398	  You will need the wan-tools package which is available from
399	  <ftp://ftp.sangoma.com/>.
400
401	  Note that the answer to this question won't directly affect the
402	  kernel except for how subordinate drivers may be built:
403	  saying N will just cause the configurator to skip all
404	  the questions about WAN router drivers.
405
406	  If unsure, say N.
407
408config CYCLADES_SYNC
409	tristate "Cyclom 2X(tm) cards (EXPERIMENTAL)"
410	depends on WAN_ROUTER_DRIVERS && (PCI || ISA)
411	---help---
412	  Cyclom 2X from Cyclades Corporation <http://www.avocent.com/> is an
413	  intelligent multiprotocol WAN adapter with data transfer rates up to
414	  512 Kbps. These cards support the X.25 and SNA related protocols.
415
416	  While no documentation is available at this time please grab the
417	  wanconfig tarball in
418	  <http://www.conectiva.com.br/~acme/cycsyn-devel/> (with minor changes
419	  to make it compile with the current wanrouter include files; efforts
420	  are being made to use the original package available at
421	  <ftp://ftp.sangoma.com/>).
422
423	  Feel free to contact me or the cycsyn-devel mailing list at
424	  <acme@conectiva.com.br> and <cycsyn-devel@bazar.conectiva.com.br> for
425	  additional details, I hope to have documentation available as soon as
426	  possible. (Cyclades Brazil is writing the Documentation).
427
428	  The next questions will ask you about the protocols you want the
429	  driver to support (for now only X.25 is supported).
430
431	  If you have one or more of these cards, say Y to this option.
432
433	  To compile this driver as a module, choose M here: the
434	  module will be called cyclomx.
435
436config CYCLOMX_X25
437	bool "Cyclom 2X X.25 support (EXPERIMENTAL)"
438	depends on CYCLADES_SYNC
439	help
440	  Connect a Cyclom 2X card to an X.25 network.
441
442	  Enabling X.25 support will enlarge your kernel by about 11 kB.
443
444# X.25 network drivers
445config LAPBETHER
446	tristate "LAPB over Ethernet driver (EXPERIMENTAL)"
447	depends on LAPB && X25
448	---help---
449	  Driver for a pseudo device (typically called /dev/lapb0) which allows
450	  you to open an LAPB point-to-point connection to some other computer
451	  on your Ethernet network.
452
453	  In order to do this, you need to say Y or M to the driver for your
454	  Ethernet card as well as to "LAPB Data Link Driver".
455
456	  To compile this driver as a module, choose M here: the
457	  module will be called lapbether.
458
459	  If unsure, say N.
460
461config X25_ASY
462	tristate "X.25 async driver (EXPERIMENTAL)"
463	depends on LAPB && X25
464	---help---
465	  Send and receive X.25 frames over regular asynchronous serial
466	  lines such as telephone lines equipped with ordinary modems.
467
468	  Experts should note that this driver doesn't currently comply with
469	  the asynchronous HDLS framing protocols in CCITT recommendation X.25.
470
471	  To compile this driver as a module, choose M here: the
472	  module will be called x25_asy.
473
474	  If unsure, say N.
475
476config SBNI
477	tristate "Granch SBNI12 Leased Line adapter support"
478	depends on X86
479	---help---
480	  Driver for ISA SBNI12-xx cards which are low cost alternatives to
481	  leased line modems.
482
483	  You can find more information and last versions of drivers and
484	  utilities at <http://www.granch.ru/>. If you have any question you
485	  can send email to <sbni@granch.ru>.
486
487	  To compile this driver as a module, choose M here: the
488	  module will be called sbni.
489
490	  If unsure, say N.
491
492config SBNI_MULTILINE
493	bool "Multiple line feature support"
494	depends on SBNI
495	help
496	  Schedule traffic for some parallel lines, via SBNI12 adapters.
497
498	  If you have two computers connected with two parallel lines it's
499	  possible to increase transfer rate nearly twice. You should have
500	  a program named 'sbniconfig' to configure adapters.
501
502	  If unsure, say N.
503
504endif # WAN