You are not logged in.
Pages: 1
Hi,
Is there away to clean up the the MTRRs using a kernel option at boot time.
Right now, I'm having to recompile the kernel for this change.
Specifically, I want the CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 line in the default config
to be CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1.
Thanks in advance
Offline
You can append the following to your kernel command-line in your boot-loader of choice:
enable_mtrr_cleanup
For example, if you use grub, your boot entry in /boot/grub/menu.lst might look something like:
# (0) Arch Linux
title Arch64 Linux Default Kernel
root (hd0,1)
kernel (hd0,1)/boot/vmlinuz26 root=/dev/sda2 ro enable_mtrr_cleanup
initrd (hd0,1)/boot/kernel26.img
Offline
Thanks a lot. Exactly what I wanted.
Offline
Pages: 1