On Sat, 2004-05-01 at 23:56 -0300, Alexandre Oliva wrote: > On Apr 28, 2004, Chris Kloiber <ckloiber@xxxxxxxxxxxx> wrote: > > > FireWire is currently busted in the latest kernel trees. IIRC it > > compiles but explodes wonderfully on insertion, taking the whole system > > and half the of the South East USA seacoast with it into oblivion. It > > will likely be turned on again when it works. > > Which probably means it won't make it to FC2 final. I plan on > offering some work-arounds for Firewire users, sort of like I did for > FC1. My plan is to take the Firewire code that shipped with kernel > 2.6.3, since that has worked quite reliably for me. > For what it's worth, I was able to build and load the firewire modules against 2.6.5-1.347. I used the latest ieee1394 branch from subversion using the attached Makefile. I have not actually tested connecting any firewire devices but my experience with other recent kernels was that loading ohci1394 spewed out a bunch of stack dumps. -- David T Hollis <dhollis@xxxxxxxxxxxxxx>
# # Makefile for the Linux IEEE 1394 implementation # ifneq ($(KERNELRELEASE),) CONFIG_IEEE1394=m CONFIG_IEEE1394_PCILYNX=m CONFIG_IEEE1394_OHCI1394=m CONFIG_IEEE1394_VIDEO1394=m CONFIG_IEEE1394_RAWIO=m CONFIG_IEEE1394_SBP2=m CONFIG_IEEE1394_DV1394=m CONFIG_IEEE1394_ETH1394=m CONFIG_IEEE1394_CMP=m ieee1394-objs := ieee1394_core.o ieee1394_transactions.o hosts.o \ highlevel.o csr.o nodemgr.o oui.o dma.o iso.o \ csr1212.o config_roms.o obj-$(CONFIG_IEEE1394) += ieee1394.o obj-$(CONFIG_IEEE1394_PCILYNX) += pcilynx.o obj-$(CONFIG_IEEE1394_OHCI1394) += ohci1394.o obj-$(CONFIG_IEEE1394_VIDEO1394) += video1394.o obj-$(CONFIG_IEEE1394_RAWIO) += raw1394.o obj-$(CONFIG_IEEE1394_SBP2) += sbp2.o obj-$(CONFIG_IEEE1394_DV1394) += dv1394.o obj-$(CONFIG_IEEE1394_ETH1394) += eth1394.o obj-$(CONFIG_IEEE1394_AMDTP) += amdtp.o obj-$(CONFIG_IEEE1394_CMP) += cmp.o quiet_cmd_oui2c = OUI2C $@ cmd_oui2c = $(CONFIG_SHELL) $(PWD)/oui2c.sh < $< > $@ targets := oui.c $(obj)/oui.o: $(obj)/oui.c $(obj)/oui.c: $(src)/oui.db $(src)/oui2c.sh FORCE $(call if_changed,oui2c) else KDIR := /lib/modules/$(shell uname -r)/build PWD := $(shell pwd) default: $(MAKE) -C $(KDIR) M=$(PWD) clean: $(MAKE) -C $(KDIR) M=$(PWD) clean install: $(MAKE) -C $(KDIR) M=$(PWD) modules_install endif