summaryrefslogtreecommitdiffstats
path: root/booty
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-04-06 13:56:36 -0400
committerChris Lumens <clumens@redhat.com>2009-04-06 13:57:43 -0400
commit87cddf9ced397496eae90dcd8104efab0e1d41f7 (patch)
treeb8c099361c41b3a75df1bbb2d5d78a1132d50ded /booty
parentd5449e892ca817f8f0bc19578bacd891f0619ea2 (diff)
downloadanaconda-87cddf9ced397496eae90dcd8104efab0e1d41f7.tar.gz
anaconda-87cddf9ced397496eae90dcd8104efab0e1d41f7.tar.xz
anaconda-87cddf9ced397496eae90dcd8104efab0e1d41f7.zip
Fix reading the console= parameter from the cmdline (#490731).
This should mean that the serial device and options once again get preserved in the installed system's bootloader config.
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 e1a141458..0bf295d44 100644
--- a/booty/bootloaderInfo.py
+++ b/booty/bootloaderInfo.py
@@ -491,7 +491,7 @@ class bootloaderInfo:
if flags.serial != 0:
options = ""
device = ""
- console = flags.get("console", "")
+ console = flags.cmdline.get("console", "")
# the options are everything after the comma
comma = console.find(",")