From 829c4fdfcdca1207f5bb40fbdf1a67a7e0859064 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Tue, 4 Aug 2009 12:34:08 +0200 Subject: 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. --- booty/sparc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'booty/sparc.py') diff --git a/booty/sparc.py b/booty/sparc.py index 9154ac3c0..5b379b90c 100644 --- a/booty/sparc.py +++ b/booty/sparc.py @@ -121,8 +121,8 @@ class sparcBootloaderInfo(bootloaderInfo): else: raise BootyNoKernelWarning - def __init__(self, storage, network): - bootloaderInfo.__init__(self, storage, network) + def __init__(self, instData): + bootloaderInfo.__init__(self, instData) self.useSiloVal = 1 self.kernelLocation = "/boot" self._configdir = "/etc" -- cgit