From 5712797969ba9b1f320ddc5135114c12d939bd00 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 7 Oct 2004 07:25:25 +0000 Subject: explain --- perl-install/harddrake/data.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'perl-install/harddrake') diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index c7d7aa738..308704b3d 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -368,6 +368,7 @@ our @tree = configurator => "$sbindir/keyboardrake", detector => sub { f(grep { $_->{description} =~ /Keyboard/i } @devices), + # USB devices are filtered out since we already catch them through probeall(): grep { $_->{bus} ne 'usb' && $_->{driver} eq 'kbd' } detect_devices::getInputDevices(); }, checked_on_boot => 0, @@ -380,6 +381,7 @@ our @tree = configurator => "$sbindir/mousedrake", detector => sub { f(grep { $_->{driver} =~ /^Mouse:|^Tablet:/ } @devices), + # USB devices are filtered out since we already catch them through probeall(): grep { $_->{bus} ne 'usb' && $_->{driver} =~ /mouse/ } detect_devices::getInputDevices(); }, checked_on_boot => 1, -- cgit v1.2.1