summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-11-20 15:22:10 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-11-20 15:22:10 +0000
commit4d13371d71531d291e0cfa1fc0a87518406ab1cd (patch)
tree1ad2d569f73ea022376f69f3c5a1871161755ba2 /perl-install/detect_devices.pm
parent32b3b86091b04749dcc4d4845cb39ff7016b2696 (diff)
downloaddrakx-backup-do-not-use-4d13371d71531d291e0cfa1fc0a87518406ab1cd.tar
drakx-backup-do-not-use-4d13371d71531d291e0cfa1fc0a87518406ab1cd.tar.gz
drakx-backup-do-not-use-4d13371d71531d291e0cfa1fc0a87518406ab1cd.tar.bz2
drakx-backup-do-not-use-4d13371d71531d291e0cfa1fc0a87518406ab1cd.tar.xz
drakx-backup-do-not-use-4d13371d71531d291e0cfa1fc0a87518406ab1cd.zip
adapt to new usb_class2text()
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 3f75e2cd9..83c64ce5f 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -509,6 +509,7 @@ sub usb_probe() {
add_addons($usbtable_addons, map {
my %l;
@l{qw(vendor id media_type driver description pci_bus pci_device)} = split "\t";
+ $l{media_type} = join('|', grep { $_ ne '(null)' } split('\|', $l{media_type}));
$l{$_} = hex $l{$_} foreach qw(vendor id);
$l{bus} = 'USB';
\%l