From 7dc93f8a90ff78586bc7d55c0742826d3906930e Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Tue, 8 Nov 2005 16:28:00 +0000 Subject: handle zd1201 as well --- perl-install/network/ethernet.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'perl-install/network/ethernet.pm') diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index 4d9633cd2..86d85c7c6 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -91,11 +91,12 @@ sub get_eth_cards { my @cards = grep { my $dev = $_; every { $dev->{$_} eq $l{$_} } keys %l } detect_devices::probeall(); $description ||= $cards[0]{description} if @cards == 1; } elsif (!$a && -e "/sys/class/net/$interface/wireless") { - # probably a rt2400/rt2500 device (PCI or PCMCIA CardBus) + # probably a rt2400/rt2500 device (PCI or PCMCIA CardBus) or zd1201 (USB) # these broken drivers don't create the "device" link - # try to see if rt2400/rt2500 is loaded, and assume current wireless device uses it + # try to see if rt2400/rt2500/zd1201 is loaded, and assume current wireless device uses it # FIXME: remove this code as soon as the drivers are fixed $a = find { -e "/sys/bus/pci/drivers/$_" } qw(rt2400 rt2500); + $a ||= find { -e "/sys/bus/usb/drivers/$_" } qw(zd1201); } } # 6) try to match a device by driver for device description: -- cgit v1.2.1