summaryrefslogtreecommitdiffstats
path: root/bootloader.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-03-24 21:01:36 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-03-24 21:01:36 +0000
commit752f4a828a20c5bee9c77b21ac334796d8ec1d5b (patch)
tree8d776d3fb983ed80bf2630e2f5b3c02e06832e7b /bootloader.py
parenta08b8d82c731893a3c0010fec81324526cfaf8ad (diff)
downloadanaconda-752f4a828a20c5bee9c77b21ac334796d8ec1d5b.tar.gz
anaconda-752f4a828a20c5bee9c77b21ac334796d8ec1d5b.tar.xz
anaconda-752f4a828a20c5bee9c77b21ac334796d8ec1d5b.zip
Get ready for a surprise...
not really. It's just iutil.getArch() -> rhpl.getArch() updates.
Diffstat (limited to 'bootloader.py')
-rw-r--r--bootloader.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bootloader.py b/bootloader.py
index bd9f9f6e4..52cc0c8ad 100644
--- a/bootloader.py
+++ b/bootloader.py
@@ -22,6 +22,7 @@ import crypt
import language
import iutil
import string
+import rhpl
from flags import flags
from constants import *
@@ -191,7 +192,7 @@ def writeBootloader(intf, instRoot, fsset, bl, langs, backend):
# note that this function no longer actually creates an initrd.
# the kernel's %post does this now
def makeInitrd (kernelTag, instRoot):
- if iutil.getArch() == 'ia64':
+ if rhpl.getArch() == 'ia64':
initrd = "/boot/efi/initrd%s.img" % (kernelTag, )
else:
initrd = "/boot/initrd%s.img" % (kernelTag, )