WORKS!
But its not over: I just put in a second ISDN card (also AVM Fritz! PCI), becasue I need more channels. Now no card is working. I have to reconfig Hisax for this, the folks at ISDN4Linux say, like "modprobe -v hisax protocol=2,2 type=27,27". -- To make it last, I should type "options hisax type=27,27 protocol=2,2" into modules.conf.
But SME is overwriting this file, it tells me. Instead, I should go, modify /etc/e-smith/templates/modules.conf/10Hisax -- This one looks like that:
{
@lines = grep { !/^\s*options\s*hisax/ } @lines;
my $hisax_alias = "alias char-major-43 hisax";
unless (exists $lines{$hisax_alias})
{
push @lines, $hisax_alias;
}
my $hisax = db_get_prop($confref, 'isdn', 'HisaxOptions') || "";
my $type = db_get_prop($confref, 'isdn', 'Type') || "";
my $protocol = db_get_prop($confref, 'isdn', 'Protocol') || "";
if ($type)
{
$hisax .= " type=$type";
}
if ($protocol)
{
$hisax .= " protocol=$protocol";
}
if ($hisax)
{
push @lines, "options hisax $hisax";
}
"";
}
Help! - I've got no idea about customizing this piece of stuff.
whte_rbt