[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

[PATCH] 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.
---
 booty/bootloaderInfo.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/booty/bootloaderInfo.py b/booty/bootloaderInfo.py
index de0f920..ff5420a 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
-- 
1.6.2.2


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]