Kconfig 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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://wiki.linux1394.org/JujuMigration before you
  14. enable the new stack.
  15. To compile this driver as a module, say M here: the module will be
  16. called firewire-core. It functionally replaces ieee1394, raw1394,
  17. and video1394.
  18. config FIREWIRE_OHCI
  19. tristate "OHCI-1394 controllers"
  20. depends on PCI && FIREWIRE
  21. help
  22. Enable this driver if you have a FireWire controller based
  23. on the OHCI specification. For all practical purposes, this
  24. is the only chipset in use, so say Y here.
  25. To compile this driver as a module, say M here: The module will be
  26. called firewire-ohci. It replaces ohci1394 of the classic IEEE 1394
  27. stack.
  28. NOTE:
  29. You should only build either firewire-ohci or the old ohci1394 driver,
  30. but not both. If you nevertheless want to install both, you should
  31. configure them only as modules and blacklist the driver(s) which you
  32. don't want to have auto-loaded. Add either
  33. blacklist firewire-ohci
  34. or
  35. blacklist ohci1394
  36. blacklist video1394
  37. blacklist dv1394
  38. to /etc/modprobe.conf or /etc/modprobe.d/* and update modprobe.conf
  39. depending on your distribution. The latter two modules should be
  40. blacklisted together with ohci1394 because they depend on ohci1394.
  41. If you have an old modprobe which doesn't implement the blacklist
  42. directive, use "install modulename /bin/true" for the modules to be
  43. blacklisted.
  44. config FIREWIRE_OHCI_DEBUG
  45. bool
  46. depends on FIREWIRE_OHCI
  47. default y
  48. config FIREWIRE_SBP2
  49. tristate "Storage devices (SBP-2 protocol)"
  50. depends on FIREWIRE && SCSI
  51. help
  52. This option enables you to use SBP-2 devices connected to a
  53. FireWire bus. SBP-2 devices include storage devices like
  54. harddisks and DVD drives, also some other FireWire devices
  55. like scanners.
  56. To compile this driver as a module, say M here: The module will be
  57. called firewire-sbp2. It replaces sbp2 of the classic IEEE 1394
  58. stack.
  59. You should also enable support for disks, CD-ROMs, etc. in the SCSI
  60. configuration section.