From 4c5ce9fb5d76763fd81cf141ed7f479c3c86cc61 Mon Sep 17 00:00:00 2001 From: Bohdan Khomutskyi Date: Thu, 13 Aug 2020 15:11:41 +0200 Subject: [PATCH] Specify the squashfs-only in the lorax_options This will reduce both the BOOT.iso and the DVD medium size This modification relates to the following change proposal: https://fedoraproject.org/wiki/Category:Changes/OptimizeSquashFS The new option should work for Pungi version 4.24 and above Jira: RHELCMP-693 Signed-off-by: Bohdan Khomutskyi --- fedora.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fedora.conf b/fedora.conf index 7183429..9a9b57e 100644 --- a/fedora.conf +++ b/fedora.conf @@ -105,11 +105,13 @@ buildinstall_skip = [ lorax_options = [ ('^.*$', { 'x86_64': { - 'nomacboot': False + 'nomacboot': False, + 'squashfs_only': True }, '*': { 'noupgrade': True, - 'rootfs_size': 3 + 'rootfs_size': 3, + 'squashfs_only': True } }) ]