1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#
# XPP configuration
#
menuconfig DAHDI_XPP
tristate "Xorcom Astribank Support"
depends on DAHDI
default DAHDI
---help---
Infrastructure support for Xorcom Astribank products.
To compile this driver as a module, choose M here: the
module will be called xpp.
If unsure, say Y.
config DAHDI_XPP_USB
tristate "Astribank USB transport"
depends on DAHDI_XPP && USB
default DAHDI_XPP
---help---
To compile this driver as a module, choose M here: the
module will be called xpp_usb.
If unsure, say Y.
config DAHDI_XPP_MMAP
tristate "Astribank Blackfin transport"
depends on DAHDI_XPP && BF537
default DAHDI_XPP
---help---
To compile this driver as a module, choose M here: the
module will be called xpp_mmap.
This module can be compiled only on Blackfin architecture
(with uClinux).
If unsure, say N.
config DAHDI_XPD_FXS
tristate "FXS port Support"
depends on DAHDI_XPP && (DAHDI_XPP_USB || DAHDI_XPP_MMAP)
default DAHDI_XPP
---help---
To compile this driver as a module, choose M here: the
module will be called xpd_fxs.
If unsure, say Y.
config DAHDI_XPD_FXO
tristate "FXO port Support"
depends on DAHDI_XPP && (DAHDI_XPP_USB || DAHDI_XPP_MMAP)
default DAHDI_XPP
---help---
To compile this driver as a module, choose M here: the
module will be called xpd_fxo.
If unsure, say Y.
config DAHDI_XPD_BRI
tristate "BRI port Support"
depends on DAHDI_XPP && (DAHDI_XPP_USB || DAHDI_XPP_MMAP)
default DAHDI_XPP
---help---
To compile this driver as a module, choose M here: the
module will be called xpd_pri.
Note: this driver will be automatically excluded
from compilation if dahdi driver does not
contain the "bristuff" patch.
If unsure, say Y.
config DAHDI_XPD_PRI
tristate "PRI port Support"
depends on DAHDI_XPP && (DAHDI_XPP_USB || DAHDI_XPP_MMAP)
default DAHDI_XPP
---help---
To compile this driver as a module, choose M here: the
module will be called xpd_pri.
If unsure, say Y.
|