Disable hfs by default

This commit is contained in:
eabdullin 2025-09-30 14:07:08 +03:00
parent bc12ed7d69
commit 65986b8eaf
3 changed files with 6 additions and 3 deletions

View File

@ -1291,7 +1291,7 @@ Options
(*int|str*) -- how much free space should be left on each disk. The format (*int|str*) -- how much free space should be left on each disk. The format
is the same as for ``iso_size`` option. 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 (*bool*) -- when set to False, the Apple/HFS compatibility is turned off
for ppc64le ISOs. This option only makes sense for bootable products, and for ppc64le ISOs. This option only makes sense for bootable products, and
affects images produced in *createiso* and *extra_isos* phases. affects images produced in *createiso* and *extra_isos* phases.

View File

@ -1,6 +1,6 @@
Name: pungi Name: pungi
Version: 4.10.1 Version: 4.10.1
Release: 1%{?dist}.alma.1 Release: 1%{?dist}.alma.2
Summary: Distribution compose tool Summary: Distribution compose tool
License: GPL-2.0-only License: GPL-2.0-only
@ -167,6 +167,9 @@ gzip _build/man/pungi.1
%{_bindir}/%{name}-cache-cleanup %{_bindir}/%{name}-cache-cleanup
%changelog %changelog
* Tue Sep 30 2025 Eduard Abdullin <eabdullin@almalinux.org> - 4.10.1-1.alma.2
- Set iso_hfs_ppc64le_compatible to False by default
* Fri Aug 08 2025 Lubomír Sedlář <lsedlar@redhat.com> - 4.10.1-1 * Fri Aug 08 2025 Lubomír Sedlář <lsedlar@redhat.com> - 4.10.1-1
- osbuild: Handle wsl2 images (lsedlar) - osbuild: Handle wsl2 images (lsedlar)
- repoclosure: Clean up cache for dnf5 (lsedlar) - repoclosure: Clean up cache for dnf5 (lsedlar)

View File

@ -802,7 +802,7 @@ def make_schema():
_variant_arch_mapping({"type": "number", "enum": [1, 2, 3, 4]}), _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( "multilib": _variant_arch_mapping(
{"$ref": "#/definitions/list_of_strings"} {"$ref": "#/definitions/list_of_strings"}
), ),