summaryrefslogtreecommitdiffstats
path: root/booty/sparc.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/sparc.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/sparc.py')
-rw-r--r--booty/sparc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/booty/sparc.py b/booty/sparc.py
index 276eafd8f..c7fb9d865 100644
--- a/booty/sparc.py
+++ b/booty/sparc.py
@@ -5,7 +5,7 @@ from bootloaderInfo import *
class sparcBootloaderInfo(bootloaderInfo):
def writeSilo(self, instRoot, bl, kernelList,
- chainList, defaultDev, justConfigFile):
+ chainList, defaultDev):
try:
bootDev = self.storage.mountpoints["/boot"]
@@ -113,10 +113,10 @@ class sparcBootloaderInfo(bootloaderInfo):
self.password = val
def write(self, instRoot, bl, kernelList, chainList,
- defaultDev, justConfig):
+ defaultDev):
if len(kernelList) >= 1:
return self.writeSilo(instRoot, bl, kernelList, chainList,
- defaultDev, justConfig)
+ defaultDev)
else:
raise BootyNoKernelWarning