diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-10-17 14:39:50 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-10-17 14:39:50 +0000 |
commit | 94decd93d7f5e60022f43a6df64376048a9d9386 (patch) | |
tree | f5786751df4ed9925288de155f375e537ccda44c /perl-install | |
parent | ad57da3b1c587747fdec4fa344fd929d1a111aea (diff) | |
download | drakx-backup-do-not-use-94decd93d7f5e60022f43a6df64376048a9d9386.tar drakx-backup-do-not-use-94decd93d7f5e60022f43a6df64376048a9d9386.tar.gz drakx-backup-do-not-use-94decd93d7f5e60022f43a6df64376048a9d9386.tar.bz2 drakx-backup-do-not-use-94decd93d7f5e60022f43a6df64376048a9d9386.tar.xz drakx-backup-do-not-use-94decd93d7f5e60022f43a6df64376048a9d9386.zip |
after further investigation at Houston, the bcm440 bug was not related
to MII_NOT_SUPPORTED (ethtool/mii support is fine in this driver).
instead, it is related to half/full duplex detection.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/network.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm index 3b6b46c10..4d12a1537 100644 --- a/perl-install/network/network.pm +++ b/perl-install/network/network.pm @@ -338,7 +338,7 @@ notation (for example, 1.2.3.4)."); my $onboot = $intf->{ONBOOT} ? $intf->{ONBOOT} =~ /yes/ : bool2yesno(!member($intf->{DEVICE}, map { $_->{device} } detect_devices::pcmcia_probe())); my $needhostname = $intf->{NEEDHOSTNAME} !~ /no/; # blacklist: - $intf->{MII_NOT_SUPPORTED} ||= bool2yesno(member($module, qw(bcm4400))); # 3c59x de4x5 e100 e1000 ne2k-pci + #$intf->{MII_NOT_SUPPORTED} ||= bool2yesno(member($module, qw(bcm4400))); # 3c59x de4x5 e100 e1000 ne2k-pci my $hotplug = text2bool($intf->{MII_NOT_SUPPORTED}); invbool(\$hotplug); my $track_network_id = $::isStandalone && $intf->{HWADDR} || detect_devices::isLaptop(); |