summaryrefslogtreecommitdiffstats
path: root/booty/ia64.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-03-04 14:32:07 -0500
committerChris Lumens <clumens@redhat.com>2009-03-04 15:37:05 -0500
commit596ffcad57ec5f51238a6c295cc3eece95388ae4 (patch)
tree69815b759ecba2741f4b488f8f54e93bdb15d52d /booty/ia64.py
parent1983df2711bef5e8c0f9b5730a15ac665a9f0164 (diff)
downloadanaconda-596ffcad57ec5f51238a6c295cc3eece95388ae4.tar.gz
anaconda-596ffcad57ec5f51238a6c295cc3eece95388ae4.tar.xz
anaconda-596ffcad57ec5f51238a6c295cc3eece95388ae4.zip
Add a storage instance to all bootloaderInfo subclasses.
We could pass storage around to all the various functions that will need it, but that's a big mess. It's far easier to just set this when we create the bootloaderInfo class and never worry about it again.
Diffstat (limited to 'booty/ia64.py')
-rw-r--r--booty/ia64.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/booty/ia64.py b/booty/ia64.py
index 174c696d5..2dcee97c0 100644
--- a/booty/ia64.py
+++ b/booty/ia64.py
@@ -33,7 +33,7 @@ class ia64BootloaderInfo(efiBootloaderInfo):
def makeInitrd(self, kernelTag):
return "/boot/efi/EFI/redhat/initrd%s.img" % kernelTag
- def __init__(self):
- efiBootloaderInfo.__init__(self)
+ def __init__(self, storage):
+ efiBootloaderInfo.__init__(self, storage)
self._configname = "elilo.conf"
self._bootloader = "elilo.efi"