From e80166f02e28092ef6fb8481f5ee1ab1911a0b26 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Wed, 8 May 2024 08:31:16 -0700 Subject: [PATCH] sync from upstream --- rocky/override.conf | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/rocky/override.conf b/rocky/override.conf index 6de26a0..20d5d42 100644 --- a/rocky/override.conf +++ b/rocky/override.conf @@ -1,8 +1,7 @@ # This files overrides default variables defined in the configs in # the ../shared directory. -# No images for now -# from images import * +from images import * # Unsigned builds for now sigkeys = [None] @@ -17,7 +16,9 @@ lorax_options = [ 'nomacboot': True }, "*": { - "noupgrade": False + "noupgrade": False, + "squashfs_only": True, + 'rootfs_size': 3 } }) ] @@ -25,3 +26,14 @@ lorax_options = [ translate_paths = [ # required by image-build ("/mnt/koji", "https://koji.rockylinux.org/kojifiles") ] + +extra_isos = { + "BaseOS": [{ + "include_variants": ["AppStream"], + "filename": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}", + "skip_src": True, + "extra_files": EXTRA_FILES, + "arches": EXTRA_ISOS_ARCHES, + "failable_arches": ['i386'] + }] +}