Remove maximum limit on EFI partition (#684860)
There is no technical reason for a limit on the size of the EFI
partition.
Resolves: rhbz#684860
---
platform.py | 1 -
storage/formats/fs.py | 1 -
2 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/platform.py b/platform.py
index 7871133..e139033 100644
--- a/platform.py
+++ b/platform.py
@@ -205,7 +205,6 @@ class EFI(Platform):
_bootFSTypes = ["ext4", "ext3", "ext2"]
_diskLabelType = "gpt"
_minBootPartSize = 50
- _maxBootPartSize = 256
def bootDevice(self):
bootDev = None
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index 77a459c..74d66f7 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -1104,7 +1104,6 @@ class EFIFS(FATFS):
_modules = ["vfat"]
_name = "EFI System Partition"
_minSize = 50
- _maxSize = 256
_bootable = True
@property
--
1.7.4
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|