Skip to content

Commit

Permalink
firewire: Add core firewire stack.
Browse files Browse the repository at this point in the history
Signed-off-by: Kristian Høgsberg <[email protected]>
Signed-off-by: Stefan Richter <[email protected]>
  • Loading branch information
Kristian Høgsberg authored and Stefan Richter committed Mar 9, 2007
1 parent 08e15e8 commit 3038e35
Show file tree
Hide file tree
Showing 10 changed files with 2,235 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ source "drivers/md/Kconfig"

source "drivers/message/fusion/Kconfig"

source "drivers/firewire/Kconfig"

source "drivers/ieee1394/Kconfig"

source "drivers/message/i2o/Kconfig"
Expand Down
1 change: 1 addition & 0 deletions drivers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ obj-$(CONFIG_FC4) += fc4/
obj-$(CONFIG_SCSI) += scsi/
obj-$(CONFIG_ATA) += ata/
obj-$(CONFIG_FUSION) += message/
obj-$(CONFIG_FW) += firewire/
obj-$(CONFIG_IEEE1394) += ieee1394/
obj-y += cdrom/
obj-y += auxdisplay/
Expand Down
23 changes: 23 additions & 0 deletions drivers/firewire/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# -*- shell-script -*-

menu "IEEE 1394 (FireWire) support (JUJU alternative stack)"

config FW
tristate "IEEE 1394 (FireWire) support (JUJU alternative stack)"
help
IEEE 1394 describes a high performance serial bus, which is also
known as FireWire(tm) or i.Link(tm) and is used for connecting all
sorts of devices (most notably digital video cameras) to your
computer.

If you have FireWire hardware and want to use it, say Y here. This
is the core support only, you will also need to select a driver for
your IEEE 1394 adapter.

This is the "JUJU" firewire stack, an alternative
implementation designed for roboustness and simplicity.

To compile this driver as a module, say M here: the
module will be called fw-core.

endmenu
7 changes: 7 additions & 0 deletions drivers/firewire/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#
# Makefile for the Linux IEEE 1394 implementation
#

fw-core-objs := fw-card.o fw-topology.o fw-transaction.o fw-iso.o

obj-$(CONFIG_FW) += fw-core.o
Loading

0 comments on commit 3038e35

Please sign in to comment.