From db371bd62394223511ea683f5ec86ae35249f759 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 18 Feb 2008 14:25:45 +0000 Subject: =?UTF-8?q?use=20acpi=5Fcpufreq=20for=20Mobile=20PIII/Celeron=20(f?= =?UTF-8?q?or=20example=20Toshiba=20Port=C3=A9g=C3=A9=203500)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- perl-install/cpufreq.pm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/perl-install/cpufreq.pm b/perl-install/cpufreq.pm index 663d0ff04..5b7dc72a7 100644 --- a/perl-install/cpufreq.pm +++ b/perl-install/cpufreq.pm @@ -41,9 +41,12 @@ sub find_pci_device { sub probe_acpi_cpufreq() { any { get_vendor($_) eq "Intel" && - has_flag($_, 'est') && $_->{'cpu family'} == 6 && - member($_->{model}, 13, 15); + ( + has_flag($_, 'est') && member($_->{model}, 13, 15) + || + $_->{'model'} == 11 + ); } get_cpus(); } -- cgit v1.2.1