diff options
-rw-r--r-- | perl-install/install_steps.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 855bbce5e..a4e1ec509 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -785,6 +785,9 @@ sub setupBootloaderBefore { if ($o->{miscellaneous}{HDPARM}) { bootloader::add_append($o->{bootloader}, $_, 'autotune') foreach grep { /ide.*/ } all("/proc/ide"); } + if (grep { /mem=nopentium/ } cat_("/proc/cmdline")) { + bootloader::add_append($o->{bootloader}, 'mem', 'nopentium'); + } if (arch() =~ /alpha/) { if (my $dev = fsedit::get_root($o->{fstab})) { |