summaryrefslogtreecommitdiffstats
path: root/partitioning.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-07-13 19:21:19 +0000
committerJeremy Katz <katzj@redhat.com>2001-07-13 19:21:19 +0000
commit184b7367291975d0322e3e0d7fb425d4f9ff0bf4 (patch)
tree6ea17a357f47cd2075c9a069103635ae1858af4e /partitioning.py
parentabc0358d36c3bb157f16441552958a2b8423f75c (diff)
downloadanaconda-184b7367291975d0322e3e0d7fb425d4f9ff0bf4.tar.gz
anaconda-184b7367291975d0322e3e0d7fb425d4f9ff0bf4.tar.xz
anaconda-184b7367291975d0322e3e0d7fb425d4f9ff0bf4.zip
/boot/efi must be vfat (48779)
Diffstat (limited to 'partitioning.py')
-rw-r--r--partitioning.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/partitioning.py b/partitioning.py
index aec095056..7cc35e086 100644
--- a/partitioning.py
+++ b/partitioning.py
@@ -765,9 +765,10 @@ class Partitions:
# return name of boot mount point in current requests
def getBootableRequest(self):
bootreq = None
-
- if not bootreq and iutil.getArch() == "ia64":
+
+ if iutil.getArch() == "ia64":
bootreq = self.getRequestByMountPoint("/boot/efi")
+ return bootreq
if not bootreq:
bootreq = self.getRequestByMountPoint("/boot")
if not bootreq: