summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
Diffstat (limited to 'isys')
-rw-r--r--isys/isys.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py
index eea59db21..2499f1278 100644
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -26,6 +26,7 @@ import kudzu
import iutil
import warnings
import resource
+import rhpl
import logging
log = logging.getLogger("anaconda")
@@ -289,7 +290,7 @@ def hardDriveDict():
# this is kind of ugly, but it's much easier to do this from python
for (dev, descr) in dict.items():
# blacklist *STMF on power5 iSeries boxes
- if iutil.getArch() == "ppc" and dev.startswith("sd"):
+ if rhpl.getArch() == "ppc" and dev.startswith("sd"):
try:
devName = "/tmp/%s" % dev
makeDevInode(dev, devName)