summaryrefslogtreecommitdiffstats
path: root/booty
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2009-04-28 17:16:03 -0400
committerPeter Jones <pjones@redhat.com>2009-04-28 17:26:56 -0400
commit26d2ca21df20d8d0d481835bc2a8f69bd7da6f4c (patch)
treed46f09e594fecbd623f9ed675d7be76056c81d7d /booty
parent8f00043e754a4a8c4919fdbfbe5984a439bc3d7b (diff)
downloadanaconda-26d2ca21df20d8d0d481835bc2a8f69bd7da6f4c.tar.gz
anaconda-26d2ca21df20d8d0d481835bc2a8f69bd7da6f4c.tar.xz
anaconda-26d2ca21df20d8d0d481835bc2a8f69bd7da6f4c.zip
Add "nomodeset" to the list of command line arguments copied to grub.conf
"nomodeset" is one of the command line options that it's very likely you'll want post-install if you want it during install. Ergo, this patch adds it to the list of options preserved in the normal bootloader config file after installation.
Diffstat (limited to 'booty')
-rw-r--r--booty/bootloaderInfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/booty/bootloaderInfo.py b/booty/bootloaderInfo.py
index de0f92020..ff5420a11 100644
--- a/booty/bootloaderInfo.py
+++ b/booty/bootloaderInfo.py
@@ -130,7 +130,7 @@ class KernelArguments:
# look for kernel arguments we know should be preserved and add them
ourargs = ["speakup_synth", "apic", "noapic", "apm", "ide", "noht",
- "acpi", "video", "pci", "nodmraid", "nompath"]
+ "acpi", "video", "pci", "nodmraid", "nompath", "nomodeset"]
for arg in ourargs:
if not flags.cmdline.has_key(arg):
continue