diff --git a/pyanaconda/storage/formats/__init__.py b/pyanaconda/storage/formats/__init__.py
index 4b83604..4b0c122 100644
--- a/pyanaconda/storage/formats/__init__.py
+++ b/pyanaconda/storage/formats/__init__.py
@@ -144,7 +144,6 @@ class DeviceFormat(object):
_packages = [] # required packages
_services = [] # required services
_resizable = False # can be resized
- _bootable = False # can be used as boot
_migratable = False # can be migrated
_maxSize = 0 # maximum size in MB
_minSize = 0 # minimum size in MB
@@ -371,11 +370,6 @@ class DeviceFormat(object):
return self._resizable and self.exists
@property
- def bootable(self):
- """ Is this format type suitable for a boot partition? """
- return self._bootable
-
- @property
def migratable(self):
""" Can formats of this type be migrated? """
return self._migratable
diff --git a/pyanaconda/storage/formats/biosboot.py b/pyanaconda/storage/formats/biosboot.py
index 334431f..93e1de7 100644
--- a/pyanaconda/storage/formats/biosboot.py
+++ b/pyanaconda/storage/formats/biosboot.py
@@ -33,7 +33,6 @@ class BIOSBoot(DeviceFormat):
partedFlag = PARTITION_BIOS_GRUB
_formattable = True # can be formatted
_linuxNative = True # for clearpart
- _bootable = True # can be used as boot
_maxSize = 2 # maximum size in MB
_minSize = 0.5 # minimum size in MB
diff --git a/pyanaconda/storage/formats/dmraid.py b/pyanaconda/storage/formats/dmraid.py
index bfc948b..37624af 100644
--- a/pyanaconda/storage/formats/dmraid.py
+++ b/pyanaconda/storage/formats/dmraid.py
@@ -55,7 +55,6 @@ class DMRaidMember(DeviceFormat):
_linuxNative = False # for clearpart
_packages = ["dmraid"] # required packages
_resizable = False # can be resized
- _bootable = False # can be used as boot
_maxSize = 0 # maximum size in MB
_minSize = 0 # minimum size in MB
_hidden = True # hide devices with this formatting?
diff --git a/pyanaconda/storage/formats/fs.py b/pyanaconda/storage/formats/fs.py
index 1a6d23e..9cb35d5 100644
--- a/pyanaconda/storage/formats/fs.py
+++ b/pyanaconda/storage/formats/fs.py
@@ -79,7 +79,6 @@ def fsConfigFromFile(config_file):
formattable = True
supported = True
resizable = True
- bootable = True
linuxNative = True
maxSize = 8 * 1024 * 1024
minSize = 0
@@ -902,7 +901,6 @@ class Ext2FS(FS):
_formattable = True
_supported = True
_resizable = True
- _bootable = True
_linuxNative = True
_maxSize = 8 * 1024 * 1024
_minSize = 0
@@ -1088,7 +1086,6 @@ class EFIFS(FATFS):
_modules = ["vfat"]
_name = "EFI System Partition"
_minSize = 50
- _bootable = True