From 78935f2d438e0be995000bf5b07c741ae37ed73a Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 11 Oct 2004 07:43:17 +0000 Subject: (get_eth_cards) fix another lying module --- perl-install/network/ethernet.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'perl-install/network') diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index 114fe2f27..600ec2c99 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -58,7 +58,11 @@ sub get_eth_cards { my $description; # 0) get interface's driver through ETHTOOL ioctl or module aliases: my $a = c::getNetDriver($interface) || $modules_conf->get_alias($interface); - $a = "eth1394" if $a eq "ip1394"; + my %fixes = ( + "p80211_prism2_usb" => 'prism2_usb', + "ip1394" => "eth1394", + ); + $a = $fixes{$a} if $fixes{$a}; # 1) try to match a PCMCIA device for device description: if (my $b = find { $_->{device} eq $interface } @devs) { # PCMCIA case $a = $b->{driver}; -- cgit v1.2.1