summaryrefslogtreecommitdiffstats
path: root/isys
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 /isys
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)
Diffstat (limited to 'isys')
-rw-r--r--isys/isys.py2
1 files changed, 1 insertions, 1 deletions
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()