summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-11-05 13:35:18 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-11-05 13:35:18 +0000
commitccf9e0bd81af00cf55b663a518f82a866d9b64a9 (patch)
tree2b6f4c036ff01a529043ef1944b32968ce55cb86 /perl-install/detect_devices.pm
parent4022d5f26b22c02a995540a3a7d5453226082ed4 (diff)
downloaddrakx-backup-do-not-use-ccf9e0bd81af00cf55b663a518f82a866d9b64a9.tar
drakx-backup-do-not-use-ccf9e0bd81af00cf55b663a518f82a866d9b64a9.tar.gz
drakx-backup-do-not-use-ccf9e0bd81af00cf55b663a518f82a866d9b64a9.tar.bz2
drakx-backup-do-not-use-ccf9e0bd81af00cf55b663a518f82a866d9b64a9.tar.xz
drakx-backup-do-not-use-ccf9e0bd81af00cf55b663a518f82a866d9b64a9.zip
detect all up||down interfaces w/o any hardcoded limits:
- rollback to old active poll on existing interfaces rather than relying on kernel interfaces list (since it does not list unconfigured interfaces) - get the network interfaces list from /proc/net/dev (reusing the same logic as from "ifconfig -a")
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 455269ba4..11115cc35 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -417,7 +417,12 @@ sub getSagem() {
}
sub getNet() {
- grep { /^(eth|fddi|plip|tr|wifi|wlan)/ } c::getNetInterfaces();
+ grep { !(($::isStandalone || $::live) && /plip/) && c::hasNetDevice($_) }
+ grep { /^(eth|fddi|plip|tr|wifi|wlan)/ }
+ map_index {
+ # skip headers
+ if_(1 < $::i && /^\s*([a-z]*[0-9]*):/, $1)
+ } cat_("/proc/net/dev");
}
#sub getISDN() {