Skip to content

Commit

Permalink
image: increase image installer rootfs to 5 GiB
Browse files Browse the repository at this point in the history
The packages we're installing for Anaconda are larger than 4 GiB (the
size of the LiveOS image) on Fedora 39 aarch64.  The size increase isn't
huge, checking the size of the packages, it goes from 3880533484 to
3974938171 bytes, but it's enough to tip it over the threshold of a 4
GiB partition.

Increasing the size for all LiveOS images on the image installers to 5
GiB to avoid further issues.  After compression, the increase should
have a negligible (if any) effect on the size of the ISO.
  • Loading branch information
achilleas-k committed Jan 19, 2024
1 parent 6d0aebc commit 2223a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/image/anaconda_tar_installer.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (img *AnacondaTarInstaller) InstantiateManifest(m *manifest.Manifest,
isoLabel := fmt.Sprintf(img.ISOLabelTempl, img.Platform.GetArch())

rootfsImagePipeline := manifest.NewISORootfsImg(buildPipeline, anacondaPipeline)
rootfsImagePipeline.Size = 4 * common.GibiByte
rootfsImagePipeline.Size = 5 * common.GibiByte

bootTreePipeline := manifest.NewEFIBootTree(buildPipeline, img.Product, img.OSVersion)
bootTreePipeline.Platform = img.Platform
Expand Down

0 comments on commit 2223a3a

Please sign in to comment.