diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/detect_devices.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 71db96d08..4747e18f5 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -7,6 +7,8 @@ o when formatting ntfs don't zero partition (#30928) - draksec: o make the help dialog clearer about default values (#24159) +- harddrake GUI: + o do not detect some mice as UPSes - harddrake service: o drop support for kernel-2.4.x diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 4340a9d3f..fe12a4ebb 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -703,7 +703,7 @@ sub getUPS() { $_->{media_type} = 'UPS'; $_->{driver} = 'newhidups'; $_; - } grep { $_->{driver} =~ /ups$/ && $_->{description} !~ /American Power Conversion\|Back-UPS|Chicony|Keyboard|Logitech|SAITEK|WingMan/ } @usb_devices); + } grep { $_->{driver} =~ /ups$/ && $_->{description} !~ /American Power Conversion\|Back-UPS|Chicony|Keyboard|Logitech|Mouse|SAITEK|WingMan/ } @usb_devices); } $pcitable_addons = <<'EOF'; |