pgreco / centos / pungi-centos

Forked from centos/pungi-centos 5 years ago
Clone

Blame c8-armhfp.conf

8dd612
from multilib import *
8dd612
from include-excludes import *
8dd612
from images-armhfp import *
8dd612
8dd612
# PRODUCT INFO 
8dd612
release_name = "CentOS Linux" 
8dd612
release_short = "CentOS"
8dd612
release_version = "8"
8dd612
release_is_layered = False
8dd612
8dd612
# GENERAL SETTINGS
8dd612
bootable = True
8dd612
comps_file = {
8dd612
        'scm': 'git',
8dd612
        'repo': 'https://git.centos.org/centos/comps.git',
8dd612
        'branch': 'master',
8dd612
        'file': 'comps-centos-8.0.0.1905.xml',
8dd612
}
8dd612
8dd612
link_type = 'hardlink-or-copy'
8dd612
8dd612
module_defaults_dir = {
8dd612
        'scm': 'git',
8dd612
        'repo': 'https://git.centos.org/centos/centos-module-defaults.git',
8dd612
        'branch': 'c8.0',
8dd612
        'dir': '.',
8dd612
}
8dd612
8dd612
multilib = []
8dd612
8dd612
variants_file = 'variants-armhfp.xml'
8dd612
sigkeys = ['8483C65D']
8dd612
hashed_directories = False
8dd612
8dd612
tree_arches = ['armv7hl']
8dd612
8dd612
# RUNROOT SETTINGS
8dd612
runroot = True
8dd612
runroot_channel = 'image'
8dd612
runroot_tag = 'dist-c8-build'
8dd612
runroot_method = 'koji'
8dd612
8dd612
# PKGSET
8dd612
pkgset_source = "koji"
8dd612
koji_profile = "mbox"
8dd612
8dd612
# PKGSET - KOJI
8dd612
pkgset_koji_tag = "dist-c8"
8dd612
pkgset_koji_module_tag = "modular-updates-candidate"
8dd612
8dd612
filter_system_release_packages = False
8dd612
8dd612
# GATHER
8dd612
gather_prepopulate = "centos-packages.json"
8dd612
8dd612
gather_method = {
8dd612
        "^(?!(AppStream|Devel)).*$":{
8dd612
                "comps": "deps"
8dd612
        },
8dd612
        "^(AppStream|Devel)$": "hybrid",
8dd612
}
8dd612
8dd612
gather_backend = "dnf"
8dd612
check_deps = False
8dd612
greedy_method = "none"
8dd612
repoclosure_backend = "dnf"
8dd612
8dd612
# CREATEREPO
8dd612
createrepo_deltas = False
8dd612
createrepo_database = True
8dd612
createrepo_c = True
8dd612
createrepo_checksum = "sha256"
8dd612
8dd612
# CHECKSUMS
8dd612
media_checksums = ['sha256']
8dd612
media_checksum_one_file = True
8dd612
create_jigdo = False
8dd612
8dd612
# BUILDINSTALL
8dd612
bootable = True
8dd612
buildinstall_method = "lorax"
8dd612
8dd612
lorax_options = [
8dd612
    ("^.*$", {
8dd612
        "*": {
8dd612
            "noupgrade": False,
8dd612
            "rootfs_size": 3
8dd612
        }
8dd612
    })
8dd612
]
8dd612
8dd612
buildinstall_skip = [
8dd612
    ("^(AppStream|Devel)$", {
8dd612
       "*": True
8dd612
       }),
8dd612
]
8dd612
8dd612
image_name_format = {
8dd612
    "^BaseOS$": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
8dd612
    ".*": "{compose_id}-{variant}-{arch}-{disc_type}{disc_num}{suffix}",
8dd612
}
8dd612
8dd612
# CREATEISO
8dd612
create_optional_isos = False
8dd612
8dd612
createiso_skip = [
8dd612
    ('^(BaseOS|AppStream|Devel|)$', {
8dd612
        '*': True,
8dd612
        'src':True
8dd612
    }),
8dd612
]
8dd612
8dd612
extra_isos = {
8dd612
    "BaseOS": [{
8dd612
        "include_variants": ["AppStream"],
8dd612
        "filename": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
8dd612
        "skip_src": False,
8dd612
    }]
8dd612
}
8dd612
8dd612
restricted_volid = True
8dd612
8dd612
# LOOKASIDE
8dd612
variant_as_lookaside = [
8dd612
    ('AppStream', 'BaseOS'),
8dd612
    ('Devel', 'BaseOS'),
8dd612
    ('Devel', 'AppStream'),
8dd612
]
8dd612
8dd612
productimg = False
8dd612
8dd612
translate_paths = [
8dd612
	("/mnt/koji", "https://koji.armhfp-mbox.centos.org/pkgs"),
8dd612
	("/compose", "http://172.22.0.123/compose"),
8dd612
]
8dd612