diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-01-07 16:33:59 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-09 16:02:39 -0500 |
commit | 227e7d8194bd147484f6ae135a082ce22112b5b3 (patch) | |
tree | e14896b01be2f0dfa16d78582138860bfc93317a /drivers/firewire/Kconfig | |
parent | 22a38e72bc18b9e8b860182c512efaade5590c7d (diff) |
firewire: additional help in Kconfig
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire/Kconfig')
-rw-r--r-- | drivers/firewire/Kconfig | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/drivers/firewire/Kconfig b/drivers/firewire/Kconfig index 048d52e69d15..5c46e257bc9c 100644 --- a/drivers/firewire/Kconfig +++ b/drivers/firewire/Kconfig | |||
@@ -16,11 +16,13 @@ config FW | |||
16 | is the core support only, you will also need to select a driver for | 16 | is the core support only, you will also need to select a driver for |
17 | your IEEE 1394 adapter. | 17 | your IEEE 1394 adapter. |
18 | 18 | ||
19 | This is the "JUJU" FireWire stack, an alternative | 19 | To compile this driver as a module, say M here: the module will be |
20 | implementation designed for robustness and simplicity. | 20 | called fw-core. |
21 | 21 | ||
22 | To compile this driver as a module, say M here: the | 22 | This is the "JUJU" FireWire stack, an alternative implementation |
23 | module will be called fw-core. | 23 | designed for robustness and simplicity. You can build either this |
24 | stack, or the classic stack (the ieee1394 driver, ohci1394 etc.) | ||
25 | or both. | ||
24 | 26 | ||
25 | config FW_OHCI | 27 | config FW_OHCI |
26 | tristate "Support for OHCI FireWire host controllers" | 28 | tristate "Support for OHCI FireWire host controllers" |
@@ -30,8 +32,12 @@ config FW_OHCI | |||
30 | on the OHCI specification. For all practical purposes, this | 32 | on the OHCI specification. For all practical purposes, this |
31 | is the only chipset in use, so say Y here. | 33 | is the only chipset in use, so say Y here. |
32 | 34 | ||
33 | To compile this driver as a module, say M here: the | 35 | To compile this driver as a module, say M here: The module will be |
34 | module will be called fw-ohci. | 36 | called fw-ohci. |
37 | |||
38 | If you also build ohci1394 of the classic IEEE 1394 driver stack, | ||
39 | blacklist either ohci1394 or fw-ohci to let hotplug load the desired | ||
40 | driver. | ||
35 | 41 | ||
36 | config FW_SBP2 | 42 | config FW_SBP2 |
37 | tristate "Support for storage devices (SBP-2 protocol driver)" | 43 | tristate "Support for storage devices (SBP-2 protocol driver)" |
@@ -42,6 +48,13 @@ config FW_SBP2 | |||
42 | harddisks and DVD drives, also some other FireWire devices | 48 | harddisks and DVD drives, also some other FireWire devices |
43 | like scanners. | 49 | like scanners. |
44 | 50 | ||
51 | To compile this driver as a module, say M here: The module will be | ||
52 | called fw-sbp2. | ||
53 | |||
45 | You should also enable support for disks, CD-ROMs, etc. in the SCSI | 54 | You should also enable support for disks, CD-ROMs, etc. in the SCSI |
46 | configuration section. | 55 | configuration section. |
47 | 56 | ||
57 | If you also build sbp2 of the classic IEEE 1394 driver stack, | ||
58 | blacklist either sbp2 or fw-sbp2 to let hotplug load the desired | ||
59 | driver. | ||
60 | |||