From 3973d2c0d75b26326f771ff160cd0027006beb82 Mon Sep 17 00:00:00 2001 From: Thomas Backlund Date: Sat, 1 Dec 2018 14:41:58 +0200 Subject: - desktop kernels are now PAE, for PTI security fixes to work properly, so if cpu is not supporting it, install the desktop586 kernel --- perl-install/NEWS | 3 +++ perl-install/detect_devices.pm | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/perl-install/NEWS b/perl-install/NEWS index 915f4bf8a..8e7dfc310 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- desktop kernels are now PAE, for PTI security fixes to work properly, + so if cpu is not supporting it, install the desktop586 kernel + Version 18.7 - 27 Nov 2018 - drakdm: fix DM preference when none is selected (don't default to XDM) diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index b2a9b03f7..924f88325 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -1423,7 +1423,7 @@ sub is_i586() { my $cpuinfo = cat_('/proc/cpuinfo'); $cpuinfo =~ /^cpu family\s*:\s*(\d+)/m && $1 < 6 || $cpuinfo =~ /^model name\s*:\s*Transmeta.* TM5800/m || # mdvbz#37866 - !has_cpu_flag('cmov'); + !has_cpu_flag('cmov') || !has_cpu_flag('pae'); } sub is_arm_openrd_client() { -- cgit v1.2.1