From 73dd43f723ca8bf82a7cf38d385dc37cac9edc2a Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 4 Nov 2019 09:16:30 -0800 Subject: [PATCH] Increase default boot.iso (uncompressed) fs size to 3gb. We are now seeing aarch64 and x86_64 failures with the default 2gb. Ideally one of the minimzation efforts could help us here. Signed-off-by: Kevin Fenzi --- fedora.conf | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/fedora.conf b/fedora.conf index 2e0ac3b..8b414b1 100644 --- a/fedora.conf +++ b/fedora.conf @@ -103,17 +103,15 @@ buildinstall_skip = [ # Enables macboot on x86_64 for all variants and disables upgrade image building # everywhere. -# Use 3GB image size for ppc64le. +# Use 3GB image size for all arches. lorax_options = [ ('^.*$', { 'x86_64': { 'nomacboot': False }, - 'ppc64le': { - 'rootfs_size': 3 - }, '*': { 'noupgrade': True + 'rootfs_size': 3 } }) ]