diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-09-23 19:42:14 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-09-23 19:42:14 +0000 |
commit | 9ca46085490361f72c95e89f4713e634bc4835d8 (patch) | |
tree | 53d736cee13577dcdfc4766fe8a018bc7cf41e41 /perl-install/install | |
parent | 5bcb0eb1d7d79bcb881adfa10f10162d5ca87f51 (diff) | |
download | drakx-9ca46085490361f72c95e89f4713e634bc4835d8.tar drakx-9ca46085490361f72c95e89f4713e634bc4835d8.tar.gz drakx-9ca46085490361f72c95e89f4713e634bc4835d8.tar.bz2 drakx-9ca46085490361f72c95e89f4713e634bc4835d8.tar.xz drakx-9ca46085490361f72c95e89f4713e634bc4835d8.zip |
install cpufreq (defaulting to ondemand governor) instead of powernowd (#43769)
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/any.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 9f8ba1690..a71c05d0c 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,7 @@ - auto-configure floppies (in /etc/modprobe.preload.d/floppy) - allow setting compssListLevel from command line +- install cpufreq (defaulting to ondemand governor) instead of + powernowd (#43769) Version 11.50.3 - 22 September 2008 diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 9f02e359b..95bbb4488 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -515,7 +515,7 @@ sub default_packages { push @l, "lvm2" if !is_empty_array_ref($o->{all_hds}{lvms}); 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, 'powernowd' if cat_('/proc/cpuinfo') =~ /AuthenticAMD/ && arch() =~ /x86_64/ + push @l, 'cpufreq' if cat_('/proc/cpuinfo') =~ /AuthenticAMD/ && arch() =~ /x86_64/ || cat_('/proc/cpuinfo') =~ /model name.*Intel\(R\) Core\(TM\)2 CPU/; push @l, detect_devices::probe_name('Pkg'); |