diff options
author | Colin Guthrie <colin@mageia.org> | 2012-03-24 16:34:32 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2012-03-24 16:34:32 +0000 |
commit | 8909206f729c9c82e6eab34245a55b137fcd5375 (patch) | |
tree | 9a2c26b823b4ceb92a3734dbe89b79eff4787299 /perl-install | |
parent | 186be01d5dbf4d50312e10901cb606c7767d8521 (diff) | |
download | drakx-backup-do-not-use-8909206f729c9c82e6eab34245a55b137fcd5375.tar drakx-backup-do-not-use-8909206f729c9c82e6eab34245a55b137fcd5375.tar.gz drakx-backup-do-not-use-8909206f729c9c82e6eab34245a55b137fcd5375.tar.bz2 drakx-backup-do-not-use-8909206f729c9c82e6eab34245a55b137fcd5375.tar.xz drakx-backup-do-not-use-8909206f729c9c82e6eab34245a55b137fcd5375.zip |
harddrake: cpufreq performance governor is no longer a module
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/cpufreq.pm | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 326a99c21..7e173cb31 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- harddrake: + o cpufreq performance governor is no longer a module + Version 14.1 - 23 March 2012 - drakauth: diff --git a/perl-install/cpufreq.pm b/perl-install/cpufreq.pm index d11f2cd89..2c13c4865 100644 --- a/perl-install/cpufreq.pm +++ b/perl-install/cpufreq.pm @@ -166,7 +166,7 @@ sub find_driver() { $m && $m->[0]; } -my @governor_modules = map { "cpufreq_$_" } qw(performance powersave conservative ondemand); +my @governor_modules = map { "cpufreq_$_" } qw(powersave conservative ondemand); sub get_modules() { my $module; |