Kconfig 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. comment "An alternative FireWire stack is available with EXPERIMENTAL=y"
  2. depends on EXPERIMENTAL=n
  3. config FIREWIRE
  4. tristate "IEEE 1394 (FireWire) support - alternative stack, EXPERIMENTAL"
  5. depends on EXPERIMENTAL
  6. select CRC_ITU_T
  7. help
  8. This is the "Juju" FireWire stack, a new alternative implementation
  9. designed for robustness and simplicity. You can build either this
  10. stack, or the classic stack (the ieee1394 driver, ohci1394 etc.)
  11. or both. Please read http://wiki.linux1394.org/JujuMigration before
  12. you enable the new stack.
  13. To compile this driver as a module, say M here: the module will be
  14. called firewire-core. It functionally replaces ieee1394, raw1394,
  15. and video1394.
  16. NOTE:
  17. You should only build ONE of the stacks, unless you REALLY know what
  18. you are doing.
  19. config FIREWIRE_OHCI
  20. tristate "Support for OHCI FireWire host 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. It replaces ohci1394 of the classic IEEE 1394
  28. stack.
  29. NOTE:
  30. You should only build ohci1394 or firewire-ohci, but not both.
  31. If you nevertheless want to install both, you should configure them
  32. only as modules and blacklist the driver(s) which you don't want to
  33. have auto-loaded. Add either
  34. blacklist firewire-ohci
  35. or
  36. blacklist ohci1394
  37. blacklist video1394
  38. blacklist dv1394
  39. to /etc/modprobe.conf or /etc/modprobe.d/* and update modprobe.conf
  40. depending on your distribution. The latter two modules should be
  41. blacklisted together with ohci1394 because they depend on ohci1394.
  42. If you have an old modprobe which doesn't implement the blacklist
  43. directive, use "install modulename /bin/true" for the modules to be
  44. blacklisted.
  45. config FIREWIRE_OHCI_DEBUG
  46. bool
  47. depends on FIREWIRE_OHCI
  48. default y
  49. config FIREWIRE_SBP2
  50. tristate "Support for storage devices (SBP-2 protocol driver)"
  51. depends on FIREWIRE && SCSI
  52. help
  53. This option enables you to use SBP-2 devices connected to a
  54. FireWire bus. SBP-2 devices include storage devices like
  55. harddisks and DVD drives, also some other FireWire devices
  56. like scanners.
  57. To compile this driver as a module, say M here: The module will be
  58. called firewire-sbp2. It replaces sbp2 of the classic IEEE 1394
  59. stack.
  60. You should also enable support for disks, CD-ROMs, etc. in the SCSI
  61. configuration section.