diff options
author | Thierry Vignaud <tv@mageia.org> | 2011-09-07 18:04:10 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2011-09-07 18:04:10 +0000 |
commit | df3ee1409d4a54eab82bd7e0c7679deb7547e45e (patch) | |
tree | f316440582f9a63cb483381109da95e6985a43e0 /perl-install/install/any.pm | |
parent | 5e8989abdbf94bd7acc22b027e389daca3b74af2 (diff) | |
download | drakx-df3ee1409d4a54eab82bd7e0c7679deb7547e45e.tar drakx-df3ee1409d4a54eab82bd7e0c7679deb7547e45e.tar.gz drakx-df3ee1409d4a54eab82bd7e0c7679deb7547e45e.tar.bz2 drakx-df3ee1409d4a54eab82bd7e0c7679deb7547e45e.tar.xz drakx-df3ee1409d4a54eab82bd7e0c7679deb7547e45e.zip |
(default_packages) merge cpufreq detection logic into
detect_devices::hasCPUFreq(), which is cleaner and enable us to install
cpufreq on more cases
Diffstat (limited to 'perl-install/install/any.pm')
-rw-r--r-- | perl-install/install/any.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 623892693..8f90028c0 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -545,8 +545,7 @@ sub default_packages { push @l, "cryptsetup" if !is_empty_array_ref($o->{all_hds}{dmcrypts}); push @l, "dmraid" if any { fs::type::is_dmraid($_) } @{$o->{all_hds}{hds}}; push @l, "microcode_ctl" if detect_devices::hasCPUMicrocode(); - push @l, 'cpufreq' if cat_('/proc/cpuinfo') =~ /AuthenticAMD/ && arch() =~ /x86_64/ - || cat_('/proc/cpuinfo') =~ /model name.*Intel\(R\) Core\(TM\)2 CPU/; + push @l, 'cpufreq' if detect_devices::hasCPUFreq(); push @l, 'apmd' if -e "/proc/apm"; push @l, detect_devices::probe_name('Pkg'); |