From 3636f5f03dfe8056613123d36f72a3f87467d9a7 Mon Sep 17 00:00:00 2001 From: Bohdan Khomutskyi Date: Fri, 23 Oct 2020 12:15:15 +0200 Subject: [PATCH] Specify squashfs-only in lorax_options Setting this option will reduce both BOOT.iso and DVD image size This patch is related to the following change proposal: https://fedoraproject.org/wiki/Changes/OptimizeSquashFSOnDVDByRemovingEXT4FilesystemImageLayer Bugzilla ticket: https://bugzilla.redhat.com/show_bug.cgi?id=1889898 Resolves: rhbz#1889898 Signed-off-by: Bohdan Khomutskyi --- fedora.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fedora.conf b/fedora.conf index 70154e8..e9104b8 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 } }) ]