]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
ukify: check for 257.999 instead of 258~devel
authorLuca Boccassi <luca.boccassi@gmail.com>
Mon, 17 Feb 2025 14:25:40 +0000 (14:25 +0000)
committerLuca Boccassi <luca.boccassi@gmail.com>
Mon, 17 Feb 2025 15:22:43 +0000 (15:22 +0000)
We cannot do 258~devel for packages built on OBS, we use
xxx.999 instead. This can be bumped after we release 258.

mkosi/__init__.py

index 59da9a4b054a14c45b83ffc0b156fc0aa842b616..0d6bd545d15738975b1e892cce0e3080af17e7b6 100644 (file)
@@ -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"
                 ),