Kconfig 2.8 KB
Newer Older
S
Stefan Richter 已提交
1
comment "A new alternative FireWire stack is available with EXPERIMENTAL=y"
2 3
	depends on EXPERIMENTAL=n

S
Stefan Richter 已提交
4 5 6
comment "Enable only one of the two stacks, unless you know what you are doing"
	depends on EXPERIMENTAL

7
config FIREWIRE
S
Stefan Richter 已提交
8
	tristate "New FireWire stack, EXPERIMENTAL"
9
	depends on EXPERIMENTAL
10
	select CRC_ITU_T
11
	help
12
	  This is the "Juju" FireWire stack, a new alternative implementation
13
	  designed for robustness and simplicity.  You can build either this
S
Stefan Richter 已提交
14 15 16
	  stack, or the old stack (the ieee1394 driver, ohci1394 etc.) or both.
	  Please read http://wiki.linux1394.org/JujuMigration before you
	  enable the new stack.
17

18
	  To compile this driver as a module, say M here: the module will be
19 20 21 22 23 24 25
	  called firewire-core.

	  This module functionally replaces ieee1394, raw1394, and video1394.
	  To access it from application programs, you generally need at least
	  libraw1394 version 2.  IIDC/DCAM applications also need libdc1394
	  version 2.  No libraries are required to access storage devices
	  through the firewire-sbp2 driver.
26

27
config FIREWIRE_OHCI
S
Stefan Richter 已提交
28
	tristate "OHCI-1394 controllers"
29
	depends on PCI && FIREWIRE
30
	help
S
Stefan Richter 已提交
31
	  Enable this driver if you have a FireWire controller based
32 33 34
	  on the OHCI specification.  For all practical purposes, this
	  is the only chipset in use, so say Y here.

35
	  To compile this driver as a module, say M here:  The module will be
36 37 38
	  called firewire-ohci.  It replaces ohci1394 of the classic IEEE 1394
	  stack.

S
Stefan Richter 已提交
39
	  NOTE:
40

S
Stefan Richter 已提交
41 42 43 44
	  You should only build either firewire-ohci or the old ohci1394 driver,
	  but not both.  If you nevertheless want to install both, you should
	  configure them only as modules and blacklist the driver(s) which you
	  don't want to have auto-loaded.  Add either
45 46 47 48 49 50 51 52 53 54 55 56 57 58

	      blacklist firewire-ohci
	  or
	      blacklist ohci1394
	      blacklist video1394
	      blacklist dv1394

	  to /etc/modprobe.conf or /etc/modprobe.d/* and update modprobe.conf
	  depending on your distribution.  The latter two modules should be
	  blacklisted together with ohci1394 because they depend on ohci1394.

	  If you have an old modprobe which doesn't implement the blacklist
	  directive, use "install modulename /bin/true" for the modules to be
	  blacklisted.
59

60 61 62 63 64
config FIREWIRE_OHCI_DEBUG
	bool
	depends on FIREWIRE_OHCI
	default y

65
config FIREWIRE_SBP2
S
Stefan Richter 已提交
66
	tristate "Storage devices (SBP-2 protocol)"
67
	depends on FIREWIRE && SCSI
68
	help
S
Stefan Richter 已提交
69 70
	  This option enables you to use SBP-2 devices connected to a
	  FireWire bus.  SBP-2 devices include storage devices like
71 72 73
	  harddisks and DVD drives, also some other FireWire devices
	  like scanners.

74
	  To compile this driver as a module, say M here:  The module will be
75 76
	  called firewire-sbp2.  It replaces sbp2 of the classic IEEE 1394
	  stack.
77

78 79
	  You should also enable support for disks, CD-ROMs, etc. in the SCSI
	  configuration section.