From 7881594951697759aa6d0b0b9b4a5e6d24c27ef1 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 28 Apr 2009 10:23:03 -0400 Subject: Remove requirement for EFI machines to be x86, since IA64 is too (#497934). --- iutil.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'iutil.py') 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 -- cgit