Hi Folks...

I was trying to get HylaFax use my AVM FritzCard PCI as a Fax modem. Well, I finally made.

Just in case anyone is interested, here's how I did it:

I got myself a CAPI under
ftp://ftp.avm.de/cardware/fritzcrd.pci/linux/
or for you
ftp://ftp.avm.de/cardware/YOURISDN/linux

It comes with a CAPI4HylaFax and several install-skripts...

After install hylafax works just fine.

To use CAPI as i4l-device you have to make a few modifications
to /sbin/init.d/i4l_hardware and to /etc/modules.conf

Line 284-289
# modprobe -v capidrv
# if test $? -ne 0; then
# echo "Initialization of the AVM-B1-I4L-Interface failed!"
# modprobe -r capi
# exit 1
# fi

becomes:

modprobe -v capidrv
if test $? -ne 0; then
echo "Initialization of the AVM-B1-I4L-Interface failed!"
modprobe -r capi
exit 1
fi


and to the file /etc/modules.conf you should replace as stated below:

alias char-major-43 hisax
alias char-major-44 hisax
alias char-major-45 hisax

or

alias char-major-43 off
alias char-major-44 off
alias char-major-45 off

becomes:

alias char-major-43 capidrv
alias char-major-44 capidrv
alias char-major-45 capidrv


cu
Chris