diff options
-rwxr-xr-x | perl-install/standalone/drakconnect | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect index bbc4acf59..234840683 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -578,6 +578,11 @@ Create one first by clicking on 'Configure'")),1,1,0); @mask = (0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0) if $netcnx->{type} =~ /adsl/; @mask = (0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0) if $netcnx->{type} eq 'cable'; + #- duplicated code (waiting for 9.1 to be out to merge everything correctly, avoid bug elsewhere). + if ($netcnx->{type} =~ /adsl/) { + require network::adsl; + network::adsl::adsl_probe_info($cnx, $netc, $intf, undef); + } my @conf_data = ([ N("Card IRQ"), \$cnx->{irq} ], [ N("Card mem (DMA)"), \$cnx->{mem} ], [ N("Card IO"), \$cnx->{io} ], |