diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-26 18:52:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-26 18:52:40 +0000 |
commit | e71135eea183d1acf14f45b9e526f4718f2ed210 (patch) | |
tree | 2c92f1c8decfcf8886edf1092ef4b7a843642ddc | |
parent | a9e48fff516e335bd1e009496923d61c1c5cc809 (diff) | |
download | drakx-backup-do-not-use-e71135eea183d1acf14f45b9e526f4718f2ed210.tar drakx-backup-do-not-use-e71135eea183d1acf14f45b9e526f4718f2ed210.tar.gz drakx-backup-do-not-use-e71135eea183d1acf14f45b9e526f4718f2ed210.tar.bz2 drakx-backup-do-not-use-e71135eea183d1acf14f45b9e526f4718f2ed210.tar.xz drakx-backup-do-not-use-e71135eea183d1acf14f45b9e526f4718f2ed210.zip |
don't add mem=nopentium anymore. kernel people says it's not needed and bad
for performance. It also means any bug must be addressed to them
-rw-r--r-- | perl-install/install_steps.pm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 01ad63caa..9156f49e2 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -788,9 +788,6 @@ sub setupBootloaderBefore { if ($o->{miscellaneous}{HDPARM}) { bootloader::add_append($o->{bootloader}, $_, 'autotune') foreach grep { /ide.*/ } all("/proc/ide"); } - if (grep { /Athlon|Duron/ } cat_("/proc/cpuinfo")) { - bootloader::add_append($o->{bootloader}, 'mem', 'nopentium'); - } if (arch() =~ /alpha/) { if (my $dev = fsedit::get_root($o->{fstab})) { |