Kconfig 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. comment "A new alternative FireWire stack is available with EXPERIMENTAL=y"
  2. depends on EXPERIMENTAL=n
  3. comment "Enable only one of the two stacks, unless you know what you are doing"
  4. depends on EXPERIMENTAL
  5. config FIREWIRE
  6. tristate "New FireWire stack, EXPERIMENTAL"
  7. depends on EXPERIMENTAL
  8. select CRC_ITU_T
  9. help
  10. This is the "Juju" FireWire stack, a new alternative implementation
  11. designed for robustness and simplicity. You can build either this
  12. stack, or the old stack (the ieee1394 driver, ohci1394 etc.) or both.
  13. Please read http://ieee1394.wiki.kernel.org/index.php/Juju_Migration
  14. before you enable the new stack.
  15. To compile this driver as a module, say M here: the module will be
  16. called firewire-core.
  17. This module functionally replaces ieee1394, raw1394, and video1394.
  18. To access it from application programs, you generally need at least
  19. libraw1394 version 2. IIDC/DCAM applications also need libdc1394
  20. version 2. No libraries are required to access storage devices
  21. through the firewire-sbp2 driver.
  22. config FIREWIRE_OHCI
  23. tristate "OHCI-1394 controllers"
  24. depends on PCI && FIREWIRE
  25. help
  26. Enable this driver if you have a FireWire controller based
  27. on the OHCI specification. For all practical purposes, this
  28. is the only chipset in use, so say Y here.
  29. To compile this driver as a module, say M here: The module will be
  30. called firewire-ohci. It replaces ohci1394 of the classic IEEE 1394
  31. stack.
  32. NOTE:
  33. You should only build either firewire-ohci or the old ohci1394 driver,
  34. but not both. If you nevertheless want to install both, you should
  35. configure them only as modules and blacklist the driver(s) which you
  36. don't want to have auto-loaded. Add either
  37. blacklist firewire-ohci
  38. or
  39. blacklist ohci1394
  40. blacklist video1394
  41. blacklist dv1394
  42. to /etc/modprobe.conf or /etc/modprobe.d/* and update modprobe.conf
  43. depending on your distribution. The latter two modules should be
  44. blacklisted together with ohci1394 because they depend on ohci1394.
  45. If you have an old modprobe which doesn't implement the blacklist
  46. directive, use "install modulename /bin/true" for the modules to be
  47. blacklisted.
  48. config FIREWIRE_OHCI_DEBUG
  49. bool
  50. depends on FIREWIRE_OHCI
  51. default y
  52. config FIREWIRE_SBP2
  53. tristate "Storage devices (SBP-2 protocol)"
  54. depends on FIREWIRE && SCSI
  55. help
  56. This option enables you to use SBP-2 devices connected to a
  57. FireWire bus. SBP-2 devices include storage devices like
  58. harddisks and DVD drives, also some other FireWire devices
  59. like scanners.
  60. To compile this driver as a module, say M here: The module will be
  61. called firewire-sbp2. It replaces sbp2 of the classic IEEE 1394
  62. stack.
  63. You should also enable support for disks, CD-ROMs, etc. in the SCSI
  64. configuration section.