From: Luca Boccassi Date: Mon, 17 Feb 2025 14:25:40 +0000 (+0000) Subject: ukify: check for 257.999 instead of 258~devel X-Git-Tag: v26~374 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa2553835b2b2532fa89c6d9ff69508515792d4b;p=thirdparty%2Fmkosi.git ukify: check for 257.999 instead of 258~devel We cannot do 258~devel for packages built on OBS, we use xxx.999 instead. This can be bumped after we release 258. --- diff --git a/mkosi/__init__.py b/mkosi/__init__.py index 59da9a4b0..0d6bd545d 100644 --- a/mkosi/__init__.py +++ b/mkosi/__init__.py @@ -2764,10 +2764,11 @@ def check_tools(config: Config, verb: Verb) -> None: if ( want_efi(config) or config.output_format in (OutputFormat.uki, OutputFormat.esp) ) and config.unified_kernel_image_profiles: + # TODO: bump version to 258 once it is released check_ukify( config, version=( - "258~devel" + "257.999" if any(not profile.sign_expected_pcr for profile in config.unified_kernel_image_profiles) else "257" ),