summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-04-28 10:23:03 -0400
committerChris Lumens <clumens@redhat.com>2009-04-28 13:26:26 -0400
commit7881594951697759aa6d0b0b9b4a5e6d24c27ef1 (patch)
tree7e2f56db77534488e8c6a80a0f53ddc7a53c7435 /iutil.py
parentcee312dde56b9f89959565fc1029f873c54a464e (diff)
downloadanaconda-7881594951697759aa6d0b0b9b4a5e6d24c27ef1.tar.gz
anaconda-7881594951697759aa6d0b0b9b4a5e6d24c27ef1.tar.xz
anaconda-7881594951697759aa6d0b0b9b4a5e6d24c27ef1.zip
Remove requirement for EFI machines to be x86, since IA64 is too (#497934).
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/iutil.py b/iutil.py
index 63e3a0be9..af67c5f7e 100644
--- a/iutil.py
+++ b/iutil.py
@@ -553,10 +553,9 @@ def isEfi():
return efi
efi = False
- if isX86():
- # XXX need to make sure efivars is loaded...
- if os.path.exists("/sys/firmware/efi"):
- efi = True
+ # XXX need to make sure efivars is loaded...
+ if os.path.exists("/sys/firmware/efi"):
+ efi = True
return efi