summaryrefslogtreecommitdiffstats
path: root/booty/ppc.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-12-03 09:27:48 -0500
committerChris Lumens <clumens@redhat.com>2009-12-03 15:04:35 -0500
commit2aa252d4ef68c66dc2a40808e9b38f667462a666 (patch)
treef8a09907506a1b6feb2c37d2251662a5df594f94 /booty/ppc.py
parentfb19b46f3a8c23b58241bebf1579b3613cf7b51b (diff)
downloadanaconda-2aa252d4ef68c66dc2a40808e9b38f667462a666.tar.gz
anaconda-2aa252d4ef68c66dc2a40808e9b38f667462a666.tar.xz
anaconda-2aa252d4ef68c66dc2a40808e9b38f667462a666.zip
With flags.setupFilesystems gone, justConfig can be removed from booty.
...well, it can mostly be removed. The s390 and x86 classes still do some complicated things that end up with a justConfig test, so it has to stay in those files. However, their write() methods no longer need to accept that parameter.
Diffstat (limited to 'booty/ppc.py')
-rw-r--r--booty/ppc.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/booty/ppc.py b/booty/ppc.py
index f8ace149e..fbdd376ea 100644
--- a/booty/ppc.py
+++ b/booty/ppc.py
@@ -40,7 +40,7 @@ class ppcBootloaderInfo(bootloaderInfo):
return retval
def writeYaboot(self, instRoot, bl, kernelList,
- chainList, defaultDev, justConfigFile):
+ chainList, defaultDev):
yabootTarget = string.join(self.getBootDevs(bl))
@@ -161,11 +161,10 @@ class ppcBootloaderInfo(bootloaderInfo):
# or not
self.password = val
- def write(self, instRoot, bl, kernelList, chainList,
- defaultDev, justConfig):
+ def write(self, instRoot, bl, kernelList, chainList, defaultDev):
if len(kernelList) >= 1:
rc = self.writeYaboot(instRoot, bl, kernelList,
- chainList, defaultDev, justConfig)
+ chainList, defaultDev)
if rc:
return rc
else: