{% extends "ui/_layout.html" %} {% block title %}Boot artifacts — bty-web{% endblock %} {% block content %}

Boot artifacts

{{ boot_root }}

The bty live env that PXE clients chain into when their assignment has boot_policy=flash. Until these files are present, machines with boot_policy=flash cannot actually flash. Fetch them from the latest GitHub release of {{ release_repo }}, or drop the files into {{ boot_root }} by hand.

{% for a in artifacts %} {% endfor %}
File Status Size Last fetched
{{ a.name }} {% if a.present %} present {% else %} missing {% endif %} {% if a.size is not none %} {{ "{:,}".format(a.size) }} bytes {% else %} {% endif %} {% if a.mtime %} {{ a.mtime }} {% else %} {% endif %}

Fetch from GitHub releases

latest resolves through GitHub's redirect to the most recent release. The fetch downloads vmlinuz + initrd + squashfs + sha256, verifies the manifest, and atomically installs into {{ boot_root }}.
{% endblock %}