diff options
-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 |