summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/pkgs.pm2
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index c09c66c05..4315795f5 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- drakhardware:
+ o fix hardware support package detection (mga#27122)
+
Version 18.34 - 14 September 2020
- drakservices:
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index 504e30705..892f758da 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -125,7 +125,7 @@ sub read_rpmsrate {
$match_all_hardware ? 1 : ($inv xor find { $_->{description} =~ /$p/i } @probeall);
} elsif (($p) = /^DRIVER"(.*)"/) {
$match_all_hardware ? 1 : ($inv xor find { $_->{driver} =~ /$p/i } @probeall);
- } elsif (($p) = /^TYPE"(.*)"/) {
+ } elsif (($p) = /^TYPE"(.*)"/ && $p ne '64bit') {
$match_all_hardware ? 1 : ($inv xor $TYPEs->{$p});
} elsif (($p) = /^HW_CAT"(.*)"/) {
$match_all_hardware ? 1 : ($inv xor detect_devices::probe_category($p));