summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-12-12 20:52:38 +0000
committerJeremy Katz <katzj@redhat.com>2006-12-12 20:52:38 +0000
commitd0f18ee19fd860104754166082939e390feb8583 (patch)
tree2f88581bb0ff7054b003a3863b4bf8066aa9b135
parent02260f4e3c56557cafe9db562325f3647dc60140 (diff)
downloadanaconda-d0f18ee19fd860104754166082939e390feb8583.tar.gz
anaconda-d0f18ee19fd860104754166082939e390feb8583.tar.xz
anaconda-d0f18ee19fd860104754166082939e390feb8583.zip
2006-12-12 Jeremy Katz <katzj@redhat.com>
* isys/isys.py (doProbeBiosDisks): EDD should work on x86_64 (#218123)
-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()