From 84f9a30da5fddd60a141fd4aa9ef6a31168ca4ee Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Tue, 8 Nov 2005 16:33:42 +0000 Subject: fix zd1201 devices detection as well --- perl-install/network/ethernet.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index ec4073ee0..8cf673359 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -91,10 +91,11 @@ 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 is loaded, and assume current wireless device uses it $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