summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/pkgs.pm5
2 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index ef911634d..c463d467e 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- harddrake:
+ o recognize e17/lxde/mate/razor (mga#12495, Luc Menut)
+
Version 16.44 - 23 October 2014
- fix drakxservices not showing all services due to systemctl output change
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index afc5cc784..e1e1b3725 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -221,6 +221,11 @@ sub detect_hardware_packages {
my @ignore_flags = $::isInstall ? () : (
if_(!$do_pkgs->is_installed('task-kde4-minimal'), "CAT_KDE"),
if_(!$do_pkgs->is_installed('task-gnome-minimal'), "CAT_GNOME"),
+ if_(!$do_pkgs->is_installed('task-cinnamon-minimal'), "CAT_CINNAMON"),
+ if_(!$do_pkgs->is_installed('task-mate-minimal'), "CAT_MATE"),
+ if_(!$do_pkgs->is_installed('task-xfce-minimal'), "CAT_XFCE"),
+ if_(!$do_pkgs->is_installed('task-e17-minimal'), "CAT_E17"),
+ if_(!$do_pkgs->is_installed('task-razorqt'), "CAT_RAZOR"),
);
(
($::isInstall ? () : detect_rpmsrate_hardware_packages($o_match_all_hardware, \@ignore_flags)),