Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. menu "IEEE 1394 (FireWire) support"
  2. depends on PCI || BROKEN
  3. # firewire-core does not depend on PCI but is
  4. # not useful without PCI controller driver
  5. comment "You can enable one or both FireWire driver stacks."
  6. comment "The newer stack is recommended."
  7. config FIREWIRE
  8. tristate "FireWire driver stack"
  9. select CRC_ITU_T
  10. help
  11. This is the new-generation IEEE 1394 (FireWire) driver stack
  12. a.k.a. Juju, a new implementation designed for robustness and
  13. simplicity.
  14. See http://ieee1394.wiki.kernel.org/index.php/Juju_Migration
  15. for information about migration from the older Linux 1394 stack
  16. to the new driver stack.
  17. To compile this driver as a module, say M here: the module will be
  18. called firewire-core.
  19. config FIREWIRE_OHCI
  20. tristate "OHCI-1394 controllers"
  21. depends on PCI && FIREWIRE
  22. help
  23. Enable this driver if you have a FireWire controller based
  24. on the OHCI specification. For all practical purposes, this
  25. is the only chipset in use, so say Y here.
  26. To compile this driver as a module, say M here: The module will be
  27. called firewire-ohci.
  28. config FIREWIRE_OHCI_DEBUG
  29. bool
  30. depends on FIREWIRE_OHCI
  31. default y
  32. config FIREWIRE_SBP2
  33. tristate "Storage devices (SBP-2 protocol)"
  34. depends on FIREWIRE && SCSI
  35. help
  36. This option enables you to use SBP-2 devices connected to a
  37. FireWire bus. SBP-2 devices include storage devices like
  38. harddisks and DVD drives, also some other FireWire devices
  39. like scanners.
  40. To compile this driver as a module, say M here: The module will be
  41. called firewire-sbp2.
  42. You should also enable support for disks, CD-ROMs, etc. in the SCSI
  43. configuration section.
  44. config FIREWIRE_NET
  45. tristate "IP networking over 1394 (EXPERIMENTAL)"
  46. depends on FIREWIRE && INET && EXPERIMENTAL
  47. help
  48. This enables IPv4 over IEEE 1394, providing IP connectivity with
  49. other implementations of RFC 2734 as found on several operating
  50. systems. Multicast support is currently limited.
  51. NOTE, this driver is not stable yet!
  52. To compile this driver as a module, say M here: The module will be
  53. called firewire-net.
  54. source "drivers/ieee1394/Kconfig"
  55. endmenu