summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-11-24 16:44:43 +0000
committerThierry Vignaud <tv@mandriva.org>2009-11-24 16:44:43 +0000
commitc8cd18a4090deaa74e3a12c4f0be84f1c853f7ec (patch)
tree4bcbdc66f2505c79bf314638a2f42aa1331bef46 /perl-install/harddrake
parent5d3bb5e547281c3ca79da5fb49e8a23234c4702b (diff)
downloaddrakx-backup-do-not-use-c8cd18a4090deaa74e3a12c4f0be84f1c853f7ec.tar
drakx-backup-do-not-use-c8cd18a4090deaa74e3a12c4f0be84f1c853f7ec.tar.gz
drakx-backup-do-not-use-c8cd18a4090deaa74e3a12c4f0be84f1c853f7ec.tar.bz2
drakx-backup-do-not-use-c8cd18a4090deaa74e3a12c4f0be84f1c853f7ec.tar.xz
drakx-backup-do-not-use-c8cd18a4090deaa74e3a12c4f0be84f1c853f7ec.zip
fix detecting some mice
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r--perl-install/harddrake/data.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index c9bea4e1e..66c747179 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -498,7 +498,7 @@ our @tree =
icon => "hw_mouse.png",
configurator => "$sbindir/mousedrake",
detector => sub {
- f(grep { $_->{driver} =~ /^Mouse:|^Tablet:/ || $_->{media_type} =~ /class\|Mouse/ ||
+ f(grep { $_->{driver} =~ /^Mouse:|^Tablet:|^mouse/ || $_->{media_type} =~ /class\|Mouse/ ||
# USB devices are filtered out since we already catch them through probeall():
$_->{bus} ne 'usb' && $_->{Handlers}{mouse};
} @devices);