summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-03-21 11:09:30 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-03-21 11:09:30 +0000
commit0ed5a8bcb0beb088b7b06056d0f12dc44d79fe91 (patch)
treeee216e4272d49deb6d4b181c6054286191d3ed07 /perl-install/detect_devices.pm
parent05be98b71ee65267f510fb563a2bc95cfb8c5089 (diff)
downloaddrakx-backup-do-not-use-0ed5a8bcb0beb088b7b06056d0f12dc44d79fe91.tar
drakx-backup-do-not-use-0ed5a8bcb0beb088b7b06056d0f12dc44d79fe91.tar.gz
drakx-backup-do-not-use-0ed5a8bcb0beb088b7b06056d0f12dc44d79fe91.tar.bz2
drakx-backup-do-not-use-0ed5a8bcb0beb088b7b06056d0f12dc44d79fe91.tar.xz
drakx-backup-do-not-use-0ed5a8bcb0beb088b7b06056d0f12dc44d79fe91.zip
handle new kernel flavour for i686 but non pae
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 0877f109a..1561fc9bb 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -860,8 +860,11 @@ 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.*\bpae\b/m;
+ !has_cpu_flag('cmov');
+}
+sub has_cpu_flag {
+ my ($flag) = @_;
+ cat_('/proc/cpuinfo') =~ /^flags.*\b$flag\b/m;
}
sub matching_type {