summaryrefslogtreecommitdiffstats
path: root/storage/formats/fs.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2009-06-30 11:15:54 -0400
committerJeremy Katz <katzj@redhat.com>2009-06-30 11:16:39 -0400
commit9e83e8a43f8a609c65c39c6de8cf1c341d3f31ec (patch)
tree01ead76e33f945f008f7ebb444839e26cd8407f9 /storage/formats/fs.py
parent18e6d667abddb8c9815fb734f6971fbaecd19f4d (diff)
downloadanaconda-9e83e8a43f8a609c65c39c6de8cf1c341d3f31ec.tar.gz
anaconda-9e83e8a43f8a609c65c39c6de8cf1c341d3f31ec.tar.xz
anaconda-9e83e8a43f8a609c65c39c6de8cf1c341d3f31ec.zip
Allow /boot on ext4 now that we have a grub that allows it
Diffstat (limited to 'storage/formats/fs.py')
-rw-r--r--storage/formats/fs.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index 96697ece1..0c08764a5 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -923,26 +923,10 @@ register_device_format(Ext3FS)
class Ext4FS(Ext3FS):
""" ext4 filesystem. """
_type = "ext4"
- _bootable = None
_defaultFormatOptions = ["-t", "ext4"]
_migratable = False
_modules = ["ext4"]
- @property
- def bootable(self):
- if self._bootable is not None:
- return self._bootable
-
- import platform
- p = platform.getPlatform(None)
-
- if isinstance(p, platform.PS3):
- self._bootable = True
- else:
- self._bootable = False
-
- return self._bootable
-
register_device_format(Ext4FS)