From 65986b8eafddd56a0341a7293a3e509bcebf9f1c Mon Sep 17 00:00:00 2001 From: eabdullin Date: Tue, 30 Sep 2025 14:07:08 +0300 Subject: [PATCH] Disable hfs by default --- doc/configuration.rst | 2 +- pungi.spec | 5 ++++- pungi/checks.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/configuration.rst b/doc/configuration.rst index 79bee8cb..4066bcd8 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -1291,7 +1291,7 @@ Options (*int|str*) -- how much free space should be left on each disk. The format is the same as for ``iso_size`` option. -**iso_hfs_ppc64le_compatible** = True +**iso_hfs_ppc64le_compatible** = False (*bool*) -- when set to False, the Apple/HFS compatibility is turned off for ppc64le ISOs. This option only makes sense for bootable products, and affects images produced in *createiso* and *extra_isos* phases. diff --git a/pungi.spec b/pungi.spec index 026802ea..cc15a81e 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,6 +1,6 @@ Name: pungi Version: 4.10.1 -Release: 1%{?dist}.alma.1 +Release: 1%{?dist}.alma.2 Summary: Distribution compose tool License: GPL-2.0-only @@ -167,6 +167,9 @@ gzip _build/man/pungi.1 %{_bindir}/%{name}-cache-cleanup %changelog +* Tue Sep 30 2025 Eduard Abdullin - 4.10.1-1.alma.2 +- Set iso_hfs_ppc64le_compatible to False by default + * Fri Aug 08 2025 Lubomír Sedlář - 4.10.1-1 - osbuild: Handle wsl2 images (lsedlar) - repoclosure: Clean up cache for dnf5 (lsedlar) diff --git a/pungi/checks.py b/pungi/checks.py index 3112170c..df79dd7e 100644 --- a/pungi/checks.py +++ b/pungi/checks.py @@ -802,7 +802,7 @@ def make_schema(): _variant_arch_mapping({"type": "number", "enum": [1, 2, 3, 4]}), ], }, - "iso_hfs_ppc64le_compatible": {"type": "boolean", "default": True}, + "iso_hfs_ppc64le_compatible": {"type": "boolean", "default": False}, "multilib": _variant_arch_mapping( {"$ref": "#/definitions/list_of_strings"} ),