diff options
Diffstat (limited to 'drivers/isdn/capi/Kconfig')
-rw-r--r-- | drivers/isdn/capi/Kconfig | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/drivers/isdn/capi/Kconfig b/drivers/isdn/capi/Kconfig new file mode 100644 index 000000000000..8b6c9a431ffa --- /dev/null +++ b/drivers/isdn/capi/Kconfig | |||
@@ -0,0 +1,53 @@ | |||
1 | # | ||
2 | # Config.in for the CAPI subsystem | ||
3 | # | ||
4 | config ISDN_DRV_AVMB1_VERBOSE_REASON | ||
5 | bool "Verbose reason code reporting (kernel size +=7K)" | ||
6 | depends on ISDN_CAPI | ||
7 | help | ||
8 | If you say Y here, the AVM B1 driver will give verbose reasons for | ||
9 | disconnecting. This will increase the size of the kernel by 7 KB. If | ||
10 | unsure, say Y. | ||
11 | |||
12 | config ISDN_CAPI_MIDDLEWARE | ||
13 | bool "CAPI2.0 Middleware support (EXPERIMENTAL)" | ||
14 | depends on ISDN_CAPI && EXPERIMENTAL | ||
15 | help | ||
16 | This option will enhance the capabilities of the /dev/capi20 | ||
17 | interface. It will provide a means of moving a data connection, | ||
18 | established via the usual /dev/capi20 interface to a special tty | ||
19 | device. If you want to use pppd with pppdcapiplugin to dial up to | ||
20 | your ISP, say Y here. | ||
21 | |||
22 | config ISDN_CAPI_CAPI20 | ||
23 | tristate "CAPI2.0 /dev/capi support" | ||
24 | depends on ISDN_CAPI | ||
25 | help | ||
26 | This option will provide the CAPI 2.0 interface to userspace | ||
27 | applications via /dev/capi20. Applications should use the | ||
28 | standardized libcapi20 to access this functionality. You should say | ||
29 | Y/M here. | ||
30 | |||
31 | config ISDN_CAPI_CAPIFS_BOOL | ||
32 | bool "CAPI2.0 filesystem support" | ||
33 | depends on ISDN_CAPI_MIDDLEWARE && ISDN_CAPI_CAPI20 | ||
34 | |||
35 | config ISDN_CAPI_CAPIFS | ||
36 | tristate | ||
37 | depends on ISDN_CAPI_CAPIFS_BOOL | ||
38 | default ISDN_CAPI_CAPI20 | ||
39 | help | ||
40 | This option provides a special file system, similar to /dev/pts with | ||
41 | device nodes for the special ttys established by using the | ||
42 | middleware extension above. If you want to use pppd with | ||
43 | pppdcapiplugin to dial up to your ISP, say Y here. | ||
44 | |||
45 | config ISDN_CAPI_CAPIDRV | ||
46 | tristate "CAPI2.0 capidrv interface support" | ||
47 | depends on ISDN_CAPI && ISDN_I4L | ||
48 | help | ||
49 | This option provides the glue code to hook up CAPI driven cards to | ||
50 | the legacy isdn4linux link layer. If you have a card which is | ||
51 | supported by a CAPI driver, but still want to use old features like | ||
52 | ippp interfaces or ttyI emulation, say Y/M here. | ||
53 | |||