summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-09-12 17:36:10 +0000
committerThierry Vignaud <tv@mageia.org>2012-09-12 17:36:10 +0000
commit4f6e87409adf94a71f45b4d0da7eeaf38183ae78 (patch)
tree6c45c23209d858f0c7260441033bcd8681b1839a /perl-install
parent16721930b7c94620c4dd6efa8be187854a59a5e0 (diff)
downloaddrakx-backup-do-not-use-4f6e87409adf94a71f45b4d0da7eeaf38183ae78.tar
drakx-backup-do-not-use-4f6e87409adf94a71f45b4d0da7eeaf38183ae78.tar.gz
drakx-backup-do-not-use-4f6e87409adf94a71f45b4d0da7eeaf38183ae78.tar.bz2
drakx-backup-do-not-use-4f6e87409adf94a71f45b4d0da7eeaf38183ae78.tar.xz
drakx-backup-do-not-use-4f6e87409adf94a71f45b4d0da7eeaf38183ae78.zip
install cpupower instead of cpupower
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install/NEWS2
-rw-r--r--perl-install/install/any.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 204597a4e..ae98f60a3 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- install cpupower instead of cpupower
+
Version 14.43 - 4 September 2012
- compress report with xz instead of gzip
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm
index 04660aebf..f89a05477 100644
--- a/perl-install/install/any.pm
+++ b/perl-install/install/any.pm
@@ -552,7 +552,7 @@ sub default_packages {
add_n_log("have crypted DM", "cryptsetup") if !is_empty_array_ref($o->{all_hds}{dmcrypts});
add_n_log("some disks are fake RAID", qw(mdadm dmraid)) if any { fs::type::is_dmraid($_) } @{$o->{all_hds}{hds}};
add_n_log("CPU needs microcode", "microcode_ctl") if detect_devices::hasCPUMicrocode();
- add_n_log("CPU needs cpufreq", 'cpufreq') if detect_devices::hasCPUFreq();
+ add_n_log("CPU needs cpufreq", 'cpupower') if detect_devices::hasCPUFreq();
add_n_log("APM support needed", 'apmd') if -e "/proc/apm";
add_n_log("needed by hardware", detect_devices::probe_name('Pkg'));
my @ltmp = map { $_->{BOOTPROTO} eq 'dhcp' ? $_->{DHCP_CLIENT} || 'dhcp-client' : () } values %{$o->{net}{ifcfg}};