summaryrefslogtreecommitdiffstats
path: root/perl-install/network/netconnect.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2005-04-12 19:01:19 +0000
committerOlivier Blin <oblin@mandriva.org>2005-04-12 19:01:19 +0000
commit1505cb9a13be9acb25847858726792821dbb2f81 (patch)
treee14b80dcbca800562af6ac23524c09f8ecc3c5ff /perl-install/network/netconnect.pm
parent4117d95d37b1be87c4f0b78555fca4e7d5e4b542 (diff)
downloaddrakx-backup-do-not-use-1505cb9a13be9acb25847858726792821dbb2f81.tar
drakx-backup-do-not-use-1505cb9a13be9acb25847858726792821dbb2f81.tar.gz
drakx-backup-do-not-use-1505cb9a13be9acb25847858726792821dbb2f81.tar.bz2
drakx-backup-do-not-use-1505cb9a13be9acb25847858726792821dbb2f81.tar.xz
drakx-backup-do-not-use-1505cb9a13be9acb25847858726792821dbb2f81.zip
use sysfs as fallback to detect wireless interfaces (rt2x00/prism2_*)
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r--perl-install/network/netconnect.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index 24c848ba1..f12e9e23c 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -133,7 +133,7 @@ sub real_main {
%all_eth_intf = network::ethernet::get_eth_cards_names(@all_cards); #- needed not to loose GATEWAYDEV
require list_modules; #- FIXME: check if useful
%eth_intf = map { $_->[0] => join(': ', $_->[0], $_->[2]) }
- grep { to_bool($is_wireless) == c::isNetDeviceWirelessAware($_->[0]) } @all_cards;
+ grep { to_bool($is_wireless) == detect_devices::is_wireless_interface($_->[0]) } @all_cards;
};
my $find_lan_module = sub {