Kconfig 1019 B

12345678910111213141516171819202122232425262728293031
  1. config FIREWIRE_SERIAL
  2. tristate "TTY over Firewire"
  3. depends on FIREWIRE && TTY
  4. help
  5. This enables TTY over IEEE 1394, providing high-speed serial
  6. connectivity to cabled peers. This driver implements a
  7. ad-hoc transport protocol and is currently limited to
  8. Linux-to-Linux communication.
  9. To compile this driver as a module, say M here: the module will
  10. be called firewire-serial.
  11. if FIREWIRE_SERIAL
  12. config FWTTY_MAX_TOTAL_PORTS
  13. int "Maximum number of serial ports supported"
  14. default "64"
  15. help
  16. Set this to the maximum number of serial ports you want the
  17. firewire-serial driver to support.
  18. config FWTTY_MAX_CARD_PORTS
  19. int "Maximum number of serial ports supported per adapter"
  20. range 0 FWTTY_MAX_TOTAL_PORTS
  21. default "32"
  22. help
  23. Set this to the maximum number of serial ports each firewire
  24. adapter supports. The actual number of serial ports registered
  25. is set with the module parameter "ttys".
  26. endif