diff options
author | damien <damien@mandriva.com> | 2001-07-26 12:47:47 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-07-26 12:47:47 +0000 |
commit | 0643679f69e7215b1f254dbd310384d13acb5636 (patch) | |
tree | 5dea6c299f3153da3bad678bfc37d5cd20c0268f | |
parent | bfdaf6ccfabb2a53c27be23c5bb8c7339aecb30a (diff) | |
download | drakx-0643679f69e7215b1f254dbd310384d13acb5636.tar drakx-0643679f69e7215b1f254dbd310384d13acb5636.tar.gz drakx-0643679f69e7215b1f254dbd310384d13acb5636.tar.bz2 drakx-0643679f69e7215b1f254dbd310384d13acb5636.tar.xz drakx-0643679f69e7215b1f254dbd310384d13acb5636.zip |
added default option id="HiSax" to isdn module
-rw-r--r-- | perl-install/modules.pm | 4 |
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 { |