if config.unified_kernel_image_profiles:
check_ukify(
config,
- version="257~devel",
+ version="257",
reason="build unified kernel image profiles",
hint=(
"Use ToolsTree=default to download most required tools including ukify automatically"
and config.secure_boot_auto_enroll
and (
not config.find_binary("bootctl")
- or systemd_tool_version("bootctl", sandbox=config.sandbox) < "257~devel"
+ or systemd_tool_version("bootctl", sandbox=config.sandbox) < "257"
)
):
check_tool(config, "sbsiglist", reason="set up systemd-boot secure boot auto-enrollment")
config,
"systemd-sysupdate",
"/usr/lib/systemd/systemd-sysupdate",
- version="257~devel",
+ version="257",
reason="Update the host system with systemd-sysupdate",
)
bootctlver = systemd_tool_version("bootctl", sandbox=context.sandbox)
if want_bootctl_auto_enroll := (
- context.config.secure_boot and context.config.secure_boot_auto_enroll and bootctlver >= "257~devel"
+ context.config.secure_boot and context.config.secure_boot_auto_enroll and bootctlver >= "257"
):
cmd += ["--secure-boot-auto-enroll=yes"]
context.root / shim_second_stage_binary(context),
)
- if context.config.secure_boot and context.config.secure_boot_auto_enroll and bootctlver < "257~devel":
+ if context.config.secure_boot and context.config.secure_boot_auto_enroll and bootctlver < "257":
assert context.config.secure_boot_key
assert context.config.secure_boot_certificate