summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--isys/isys.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d24921b01..17f5093cd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-12-22 Jeremy Katz <katzj@redhat.com>
+
+ * isys/isys.py (hardDriveDict): Only look for STMF on iSeries (#176024)
+
2005-12-22 Paul Nasrat <pnasrat@redhat.com>
* text.py: Make the progress bar work for depsolving (#176367)
diff --git a/isys/isys.py b/isys/isys.py
index fe9e4e273..463cd6ebe 100644
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -296,7 +296,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 iutil.getPPCMachine() == "iSeries" and dev.startswith("sd"):
try:
devName = "/tmp/%s" % dev
makeDevInode(dev, devName)