summaryrefslogtreecommitdiffstats
path: root/booty/s390.py
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2009-08-04 12:34:08 +0200
committerHans de Goede <hdegoede@redhat.com>2009-08-05 11:36:40 +0200
commit829c4fdfcdca1207f5bb40fbdf1a67a7e0859064 (patch)
treea62c5ef73129a9d2deba57a34bff762fec229c42 /booty/s390.py
parent81cc86e56a897fc3778e1ee806600bfce2af4311 (diff)
downloadanaconda-829c4fdfcdca1207f5bb40fbdf1a67a7e0859064.tar.gz
anaconda-829c4fdfcdca1207f5bb40fbdf1a67a7e0859064.tar.xz
anaconda-829c4fdfcdca1207f5bb40fbdf1a67a7e0859064.zip
Pass InstalltData to booty __init__ as it needs access to many of its members
Currently we are passing storage and network to booty's __init__, for writing the necessary kernel cmdline parameters for dracut for international consoles / keyboards booty will also need access to keyboard and language, instead of passing these all in seperately just pass InstalltData to booty's __init__. This is a preparation patch for writing out the dracut kernel cmdline commands for i18n support.
Diffstat (limited to 'booty/s390.py')
-rw-r--r--booty/s390.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/booty/s390.py b/booty/s390.py
index 8e46fab13..e8659317c 100644
--- a/booty/s390.py
+++ b/booty/s390.py
@@ -171,8 +171,8 @@ class s390BootloaderInfo(bootloaderInfo):
return self.writeChandevConf(bl, instRoot)
- def __init__(self, storage, network):
- bootloaderInfo.__init__(self, storage, network)
+ def __init__(self, instData):
+ bootloaderInfo.__init__(self, instData)
self.useZiplVal = 1 # only used on s390
self.kernelLocation = "/boot/"
self.configfile = "/etc/zipl.conf"