Bump size of three aarch64 images for bigger EFI system partition

There's a Fedora 39 Change to increase the size of the EFI
system partition:
https://fedoraproject.org/wiki/Changes/BiggerESP
it goes from a size range of 200-600MiB to a size range of
500MiB-2GiB. The way these aarch64 disk images are built, they
get the biggest ESP possible, so they're getting a 2GiB ESP,
up from 600MiB. For these three images, that results in anaconda
calculating there isn't enough space on the root partition to
install the package set, and the image creation fails.

Per https://bugzilla.redhat.com/show_bug.cgi?id=2212121
there's at least a chance this is really how we want things, so
for now, let's increase the sizes of these images to accommodate
the bigger ESP. We can revert this if we decide that after all
the larger ESP is not needed and we want to tweak that somehow.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2023-06-09 10:03:33 -07:00
parent 192d108932
commit 13fc722e94
1 changed files with 3 additions and 3 deletions

View File

@ -413,7 +413,7 @@ image_build = {
'name': 'Fedora-KDE',
'kickstart': 'fedora-disk-kde.ks',
'distro': 'Fedora-30',
'disk_size': 16,
'disk_size': 17,
'arches': ['aarch64'],
'repo': 'Everything',
'install_tree_from': 'Everything',
@ -441,7 +441,7 @@ image_build = {
'name': 'Fedora-Xfce',
'kickstart': 'fedora-disk-xfce.ks',
'distro': 'Fedora-30',
'disk_size': 13,
'disk_size': 14,
'arches': ['aarch64'],
'repo': 'Everything',
'install_tree_from': 'Everything',
@ -485,7 +485,7 @@ image_build = {
'name': 'Fedora-Workstation',
'kickstart': 'fedora-disk-workstation.ks',
'distro': 'Fedora-30',
'disk_size': 14,
'disk_size': 15,
'arches': ['aarch64'],
'repo': 'Everything',
'install_tree_from': 'Everything',