summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2004-07-19 04:38:18 +0000
committerOlivier Blin <oblin@mandriva.org>2004-07-19 04:38:18 +0000
commitb0df442cde908324a1fb9d16a2bc544f6eb5d9cd (patch)
treed93e69cae018e641b583b5386544884c2742e6fc /perl-install
parent205e2db21f41619f6d2e3f3f5ea8e12ca6c25fb2 (diff)
downloaddrakx-b0df442cde908324a1fb9d16a2bc544f6eb5d9cd.tar
drakx-b0df442cde908324a1fb9d16a2bc544f6eb5d9cd.tar.gz
drakx-b0df442cde908324a1fb9d16a2bc544f6eb5d9cd.tar.bz2
drakx-b0df442cde908324a1fb9d16a2bc544f6eb5d9cd.tar.xz
drakx-b0df442cde908324a1fb9d16a2bc544f6eb5d9cd.zip
use hotplug blacklist for adsl connections too
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/network/netconnect.pm14
1 files changed, 10 insertions, 4 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index 76a7fdba7..25e4d3203 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -143,6 +143,12 @@ sub real_main {
} else { $module = "" }
};
+ my $is_hotplug_blacklisted = sub {
+ bool2yesno($is_wireless ||
+ member($module, qw(b44 forcedeth madwifi_pci)) ||
+ find { $_->{device} eq $ntf_name } detect_devices::pcmcia_probe());
+ };
+
my %adsl_devices = (
speedtouch => N("Alcatel speedtouch USB modem"),
sagem => N("Sagem USB modem"),
@@ -770,10 +776,12 @@ If you don't know, choose 'use pppoe'"),
],
post => sub {
$netcnx->{type} = 'adsl';
+ # blacklist bogus driver, enable ifplugd support else:
+ $find_lan_module->();
+ $ethntf->{MII_NOT_SUPPORTED} ||= $is_hotplug_blacklisted->();
# process static/dhcp ethernet devices:
if (!exists $adsl_devices{$ntf_name} && member($adsl_type, qw(manual dhcp))) {
$auto_ip = $adsl_type eq 'dhcp';
- $find_lan_module->();
return 'lan_intf';
}
network::adsl::adsl_probe_info($netcnx, $netc, $adsl_type, $ntf_name);
@@ -891,9 +899,7 @@ Modifying the fields below will override this configuration."),
map { $_->{device} } detect_devices::pcmcia_probe()));
$needhostname = $ethntf->{NEEDHOSTNAME} !~ /no/;
# blacklist bogus driver, enable ifplugd support else:
- my @devs = detect_devices::pcmcia_probe();
- $ethntf->{MII_NOT_SUPPORTED} ||= bool2yesno($is_wireless || member($module, qw(b44 forcedeth madwifi_pci))
- || find { $_->{device} eq $ntf_name } @devs);
+ $ethntf->{MII_NOT_SUPPORTED} ||= $is_hotplug_blacklisted->();
$hotplug = !text2bool($ethntf->{MII_NOT_SUPPORTED});
$track_network_id = $::isStandalone && $ethntf->{HWADDR} || detect_devices::isLaptop();
delete $ethntf->{NETWORK};