diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-02-18 16:48:26 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-02-18 16:48:26 +0000 |
commit | 893f5acea45234960ef423f933b33b88d6cd4de7 (patch) | |
tree | 320f33661910768470b43f58995632198c30e80e | |
parent | c930927135f6d75f72f211cc5f2ad969f6e50317 (diff) | |
download | drakx-893f5acea45234960ef423f933b33b88d6cd4de7.tar drakx-893f5acea45234960ef423f933b33b88d6cd4de7.tar.gz drakx-893f5acea45234960ef423f933b33b88d6cd4de7.tar.bz2 drakx-893f5acea45234960ef423f933b33b88d6cd4de7.tar.xz drakx-893f5acea45234960ef423f933b33b88d6cd4de7.zip |
use p4-clockmod for some Intel family 6 processors not supporting EST (Enhanced SpeedStep), models selected from p4-clockmod source code
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/cpufreq.pm | 6 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index f7fac488d..12fdbca44 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -7,6 +7,7 @@ (family 6 model 11, for example Toshiba Portégé 3500) o use speedstep-centrino only for supported models and prefer acpi-cpufreq (patch from Herton, #30208) + o use p4-clockmod for some Intel family 6 processors not supporting EST Version 10.6.18 - 12 February 2008 diff --git a/perl-install/cpufreq.pm b/perl-install/cpufreq.pm index 50a994e06..d202031ab 100644 --- a/perl-install/cpufreq.pm +++ b/perl-install/cpufreq.pm @@ -85,8 +85,10 @@ sub probe_powerpc() { sub probe_p4() { any { - get_vendor($_) eq "Intel" && - $_->{'cpu family'} == 15; + get_vendor($_) eq "Intel" && ( + $_->{'cpu family'} == 15 || + ($_->{'cpu family'} == 6 && !has_flag($_, 'est') && member($_->{model}, 9, 13, 14, 15)) + ); } get_cpus(); } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 83e09e255..99c8ec17e 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -9,6 +9,7 @@ (family 6 model 11, for example Toshiba Portégé 3500) o use speedstep-centrino only for supported models and prefer acpi-cpufreq (patch from Herton, #30208) + o use p4-clockmod for some Intel family 6 processors not supporting EST Version 10.6.19 - 12 February 2008 |