Cap new /boot/efi partitions at 200MB. (#748274)
I see the commit log says 200 but the patch says 500. Which would people
prefer? I'd lean toward the smaller value.
On Fri, 2011-11-04 at 14:02 -0500, David Lehman wrote:
> We removed the max size for the partition and/or format but didn't
> limit the size of new ones we create.
> ---
> pyanaconda/platform.py | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/pyanaconda/platform.py b/pyanaconda/platform.py
> index fa0df8f..e49ea65 100644
> --- a/pyanaconda/platform.py
> +++ b/pyanaconda/platform.py
> @@ -202,6 +202,7 @@ class EFI(Platform):
> from storage.partspec import PartSpec
> ret = Platform.setDefaultPartitioning(self)
> ret.append(PartSpec(mountpoint="/boot/efi", fstype="efi", size=20,
> + maxSize=500,
> grow=True, weight=self.weight(fstype="efi")))
> return ret
>
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|