diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-12-12 20:52:38 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-12-12 20:52:38 +0000 |
commit | d0f18ee19fd860104754166082939e390feb8583 (patch) | |
tree | 2f88581bb0ff7054b003a3863b4bf8066aa9b135 /isys | |
parent | 02260f4e3c56557cafe9db562325f3647dc60140 (diff) | |
download | anaconda-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.py | 2 |
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() |