summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installclass.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2011-04-01 14:30:34 -0500
committerDavid Lehman <dlehman@redhat.com>2011-04-07 11:34:07 -0500
commit513f20579c87d6087c85e89771386b0f447672a3 (patch)
tree4f075f414e4ea6a6c0e512d00ee22ef218d10463 /pyanaconda/installclass.py
parent63d831148bdbe8837c4bd48a1aafa8959602e154 (diff)
downloadanaconda-513f20579c87d6087c85e89771386b0f447672a3.tar.gz
anaconda-513f20579c87d6087c85e89771386b0f447672a3.tar.xz
anaconda-513f20579c87d6087c85e89771386b0f447672a3.zip
Update remaining parts of anaconda to use new bootloader module.
Diffstat (limited to 'pyanaconda/installclass.py')
-rw-r--r--pyanaconda/installclass.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 8fd20b51d..194b8d956 100644
--- a/pyanaconda/installclass.py
+++ b/pyanaconda/installclass.py
@@ -54,7 +54,7 @@ class BaseInstallClass(object):
# default to showing the upgrade option
showUpgrade = True
bootloaderTimeoutDefault = None
- bootloaderExtraArgs = ""
+ bootloaderExtraArgs = []
_l10n_domain = None
# list of of (txt, grplist) tuples for task selection screen
@@ -96,7 +96,6 @@ class BaseInstallClass(object):
"autopartitionexecute",
"partition",
"storagedone",
- "bootloadersetup",
"bootloader",
"network",
"timezone",
@@ -192,7 +191,7 @@ class BaseInstallClass(object):
def configure(self, anaconda):
anaconda.bootloader.timeout = self.bootloaderTimeoutDefault
- anaconda.bootloader.args.append(self.bootloaderExtraArgs)
+ anaconda.bootloader.boot_args.extend(self.bootloaderExtraArgs)
def versionMatches(self, oldver):
pass