summaryrefslogtreecommitdiffstats
path: root/platform.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-10-21 14:21:25 -0400
committerChris Lumens <clumens@redhat.com>2009-10-21 14:21:25 -0400
commit738942b0ac16a2e4dfb6100c768b502a2b21c52f (patch)
tree3228b3c7d231c29f698ea0bbdd4baa861f9dceb6 /platform.py
parent7508b715310d86b6368f0bd250c02e69bd74905f (diff)
downloadanaconda-738942b0ac16a2e4dfb6100c768b502a2b21c52f.tar.gz
anaconda-738942b0ac16a2e4dfb6100c768b502a2b21c52f.tar.xz
anaconda-738942b0ac16a2e4dfb6100c768b502a2b21c52f.zip
/boot is already being checked by the superclass, so don't check again.
Diffstat (limited to 'platform.py')
-rw-r--r--platform.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/platform.py b/platform.py
index fdc895aa9..d279c184c 100644
--- a/platform.py
+++ b/platform.py
@@ -222,10 +222,7 @@ class EFI(Platform):
errors = Platform.checkBootRequest(self, req)
- if req.format.mountpoint == "/boot":
- if not req.format.type.startswith("ext"):
- errors.append(_("/boot is not on an ext2 filesystem."))
- elif req.format.mountpoint == "/boot/efi":
+ if req.format.mountpoint == "/boot/efi":
if req.format.type != "efi":
errors.append(_("/boot/efi is not EFI."))