summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index fe2f31b04..f716c4ef5 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -740,10 +740,12 @@ sub get_that_type {
grep {
if ($type eq 'isdn') {
- my $b = $_->{driver} =~ /ISDN:([^,]*),?(.*)/;
+ my $b = $_->{driver} =~ /ISDN:([^,]*),?([^,]*),?(.*)/;
if ($b) {
$_->{driver} = $1;
$_->{options} = $2;
+ $_->{firmware} = $3;
+ $_->{driver} eq "hisax" and $_->{options} .= " id=HiSax";
}
$b;
} else {