From c8cd18a4090deaa74e3a12c4f0be84f1c853f7ec Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 24 Nov 2009 16:44:43 +0000 Subject: fix detecting some mice --- perl-install/NEWS | 2 ++ perl-install/harddrake/data.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 3ba2ce194..a18b20792 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -5,6 +5,8 @@ o unmount swap too when unmounting all partitions o do not suggest Windows mountpoint for mounted partitions (breaks install if the Win partition is the installer media) +- harddrake: + o fix detecting some mice Version 12.78 - 18 November 2009 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); -- cgit v1.2.1