From 095304e9ba599b9ce9219ee5c64eabe3c89fc9a7 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 2 Oct 2008 11:47:16 +0000 Subject: do not detect pan* devices as ethernet devices for now (network configuration tools do not fully support them) --- perl-install/NEWS | 7 +++++-- perl-install/detect_devices.pm | 3 ++- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 8465c5309..6dd0d34e3 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,8 @@ -- detect_devices: allow detection of low resources systems (extracted - from compssUsers.pl) and netbooks/nettops +- detect_devices: + o allow detection of low resources systems (extracted + from compssUsers.pl) and netbooks/nettops + o do not detect pan* devices as ethernet devices for now + (network configuration tools do not fully support them) Version 11.63 - 1 October 2008 diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index b2083ca60..1a8e64ca3 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -626,8 +626,9 @@ sub is_lan_interface { #- ippp%d are created by drivers/isdn/i4l/isdn_ppp.c #- plip%d are created by drivers/net/plip.c #- ppp%d are created by drivers/net/ppp_generic.c + #- pan%d are created by bnep is_useful_interface($_[0]) && - $_[0] !~ /^(?:hso|ippp|isdn|plip|ppp)/; + $_[0] !~ /^(?:hso|ippp|isdn|plip|ppp|pan)/; } sub is_useful_interface { -- cgit v1.2.1