From 5c3114c4fc49b18db34d6342cf732631bdd78cd9 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 23 Feb 2005 11:16:47 +0000 Subject: "pae" flag in the cpu is needed for new kernel --- perl-install/detect_devices.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/detect_devices.pm') diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 46107ed24..b95583fd7 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -852,7 +852,8 @@ sub BIGMEM() { sub is_i586() { my $cpuinfo = cat_('/proc/cpuinfo'); $cpuinfo =~ /^cpu family\s*:\s*(\d+)/m && $1 < 6 || - $cpuinfo !~ /^flags.*\bcmov\b/m; + $cpuinfo !~ /^flags.*\bcmov\b/m || + $cpuinfo !~ /^flags.*\bpae\b/m; } sub matching_type { -- cgit v1.2.1