From d0f18ee19fd860104754166082939e390feb8583 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Tue, 12 Dec 2006 20:52:38 +0000 Subject: 2006-12-12 Jeremy Katz * isys/isys.py (doProbeBiosDisks): EDD should work on x86_64 (#218123) --- isys/isys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'isys') 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() -- cgit