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 52e1ef002..d72bdc398 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-12-12 Jeremy Katz <katzj@redhat.com>
+
+ * isys/isys.py (doProbeBiosDisks): EDD should work on x86_64 (#218123)
+
2006-12-12 David Cantrell <dcantrell@redhat.com>
* ui/netpostconfig.glade: Defines the Edit Network Device window used
diff --git a/isys/isys.py b/isys/isys.py
index d50b0b2c2..d8378d5e1 100644
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -440,7 +440,7 @@ def getopt(*args):
return apply(_isys.getopt, args)
def doProbeBiosDisks():
- if rhpl.getArch() != "i386":
+ if rhpl.getArch() not in ("i386", "x86_64"):
return None
return _isys.biosDiskProbe()