Kconfig 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # -*- shell-script -*-
  2. comment "An alternative FireWire stack is available with EXPERIMENTAL=y"
  3. depends on EXPERIMENTAL=n
  4. config FIREWIRE
  5. tristate "IEEE 1394 (FireWire) support - alternative stack, EXPERIMENTAL"
  6. depends on EXPERIMENTAL
  7. select CRC_ITU_T
  8. help
  9. This is the "Juju" FireWire stack, a new alternative implementation
  10. designed for robustness and simplicity. You can build either this
  11. stack, or the classic stack (the ieee1394 driver, ohci1394 etc.)
  12. or both.
  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. If you install both, you should configure them only as
  19. modules rather than link them statically, and you should blacklist one
  20. of the concurrent low-level drivers in /etc/modprobe.conf. Add either
  21. blacklist firewire-ohci
  22. or
  23. blacklist ohci1394
  24. there depending on which driver you DON'T want to have auto-loaded.
  25. You can optionally do the same with the other IEEE 1394/ FireWire
  26. drivers.
  27. If you have an old modprobe which doesn't implement the blacklist
  28. directive, use either
  29. install firewire-ohci /bin/true
  30. or
  31. install ohci1394 /bin/true
  32. and so on, depending on which modules you DON't want to have
  33. auto-loaded.
  34. config FIREWIRE_OHCI
  35. tristate "Support for OHCI FireWire host controllers"
  36. depends on PCI && FIREWIRE
  37. help
  38. Enable this driver if you have a FireWire controller based
  39. on the OHCI specification. For all practical purposes, this
  40. is the only chipset in use, so say Y here.
  41. To compile this driver as a module, say M here: The module will be
  42. called firewire-ohci. It replaces ohci1394 of the classic IEEE 1394
  43. stack.
  44. NOTE:
  45. If you also build ohci1394 of the classic stack, blacklist either
  46. ohci1394 or firewire-ohci to let hotplug load only the desired driver.
  47. config FIREWIRE_SBP2
  48. tristate "Support for storage devices (SBP-2 protocol driver)"
  49. depends on FIREWIRE && SCSI
  50. help
  51. This option enables you to use SBP-2 devices connected to a
  52. FireWire bus. SBP-2 devices include storage devices like
  53. harddisks and DVD drives, also some other FireWire devices
  54. like scanners.
  55. To compile this driver as a module, say M here: The module will be
  56. called firewire-sbp2. It replaces sbp2 of the classic IEEE 1394
  57. stack.
  58. You should also enable support for disks, CD-ROMs, etc. in the SCSI
  59. configuration section.
  60. NOTE:
  61. If you also build sbp2 of the classic stack, blacklist either sbp2
  62. or firewire-sbp2 to let hotplug load only the desired driver.