summaryrefslogtreecommitdiffstats
path: root/booty/ia64.py
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2009-08-04 11:12:14 +0200
committerHans de Goede <hdegoede@redhat.com>2009-08-04 11:12:14 +0200
commitdc8c30f746c0d8b794917fe6d45f5130e47d1427 (patch)
tree97883aba0ea0767794aa77509686a35abc22022c /booty/ia64.py
parent99cd89c17ccbd633399bdd3e2b3fd77fbd8c3707 (diff)
downloadanaconda-dc8c30f746c0d8b794917fe6d45f5130e47d1427.tar.gz
anaconda-dc8c30f746c0d8b794917fe6d45f5130e47d1427.tar.xz
anaconda-dc8c30f746c0d8b794917fe6d45f5130e47d1427.zip
Add a dracutSetupString method to network.py
Add a dracutSetupString method to network.py, this can be used to ask the Network class to get a dracut setup string to setup the interface needed for a connection to a certain host. This patch also adds code to booty to use this to get kernel cmdline dracut setup commands for any NIC's needed to connect to devices needed for /
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 6c9cdc232..c5bd42e3c 100644
--- a/booty/ia64.py
+++ b/booty/ia64.py
@@ -36,7 +36,7 @@ class ia64BootloaderInfo(efiBootloaderInfo):
def makeInitrd(self, kernelTag):
return "/boot/efi/EFI/redhat/initrd%s.img" % kernelTag
- def __init__(self, storage):
- efiBootloaderInfo.__init__(self, storage)
+ def __init__(self, storage, network):
+ efiBootloaderInfo.__init__(self, storage, network)
self._configname = "elilo.conf"
self._bootloader = "elilo.efi"