Kconfig 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #
  2. # USB/ATM DSL configuration
  3. #
  4. menu "USB DSL modem support"
  5. depends on USB
  6. config USB_ATM
  7. tristate "USB DSL modem support"
  8. depends on USB && ATM
  9. select CRC32
  10. default n
  11. help
  12. Say Y here if you want to connect a USB Digital Subscriber Line (DSL)
  13. modem to your computer's USB port. You will then need to choose your
  14. modem from the list below.
  15. To compile this driver as a module, choose M here: the
  16. module will be called usbatm.
  17. config USB_SPEEDTOUCH
  18. tristate "Speedtouch USB support"
  19. depends on USB_ATM
  20. select FW_LOADER
  21. help
  22. Say Y here if you have an SpeedTouch USB or SpeedTouch 330
  23. modem. In order to use your modem you will need to install the
  24. two parts of the firmware, extracted by the user space tools; see
  25. <http://www.linux-usb.org/SpeedTouch/> for details.
  26. To compile this driver as a module, choose M here: the
  27. module will be called speedtch.
  28. config USB_CXACRU
  29. tristate "Conexant AccessRunner USB support"
  30. depends on USB_ATM
  31. select FW_LOADER
  32. help
  33. Say Y here if you have an ADSL USB modem based on the Conexant
  34. AccessRunner chipset. In order to use your modem you will need to
  35. install the firmware, extracted by the user space tools; see
  36. <http://accessrunner.sourceforge.net/> for details.
  37. To compile this driver as a module, choose M here: the
  38. module will be called cxacru.
  39. config USB_UEAGLEATM
  40. tristate "ADI 930 and eagle USB DSL modem"
  41. depends on USB_ATM
  42. select FW_LOADER
  43. help
  44. Say Y here if you have an ADSL USB modem based on the ADI 930
  45. or eagle chipset. In order to use your modem you will need to
  46. install firmwares and CMV (Command Management Variables); see
  47. <https://gna.org/projects/ueagleatm/> for details.
  48. To compile this driver as a module, choose M here: the
  49. module will be called ueagle-atm.
  50. config USB_XUSBATM
  51. tristate "Other USB DSL modem support"
  52. depends on USB_ATM
  53. help
  54. Say Y here if you have a DSL USB modem not explicitly supported by
  55. another USB DSL drivers. In order to use your modem you will need to
  56. pass the vendor ID, product ID, and endpoint numbers for transmission
  57. and reception as module parameters. You may need to initialize the
  58. the modem using a user space utility (a firmware loader for example).
  59. To compile this driver as a module, choose M here: the
  60. module will be called xusbatm.
  61. endmenu