summaryrefslogtreecommitdiffstats
path: root/platform.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform.py')
-rw-r--r--platform.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform.py b/platform.py
index 5147a5ec9..36a289725 100644
--- a/platform.py
+++ b/platform.py
@@ -195,6 +195,7 @@ class Platform(object):
return 0
class EFI(Platform):
+ _bootFSType = "ext4"
_diskType = parted.diskType["gpt"]
_minBootPartSize = 50
_maxBootPartSize = 256
@@ -436,6 +437,7 @@ class Sparc(Platform):
class X86(EFI):
_bootloaderPackage = "grub"
+ _bootFSType = "ext4"
_supportsMdRaidBoot = True
def __init__(self, anaconda):