fb3534553b
- FastAPI Web-UI auf 127.0.0.1:8080 mit Geräte-Live-Erkennung, sandboxed File-Browser, Firmware-Library (SQLite + Auto-Identifikation) - Huawei update.app Parser: extrahiert Hardware-ID, Section-Layout, BOOT/SYSTEM-Vorhandensein direkt aus den Headern - Kirin Download-Mode: hisi-idt-Protokoll-Implementation gegen pyusb - USB-Erkennung für Huawei (DLOAD/Fastboot-D), Google, MediaTek, Qualcomm EDL - Huawei-P10-Lite-Workflow (eRecovery + Testpoint-DLOAD-Pfade) - Docker-Compose mit USB-Passthrough (Major 189) für Re-Enumeration - udev-Regeln + Setup-Script für Debian/Ubuntu/Pi-OS Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Firmware · aubox{% endblock %}
|
|
{% block content %}
|
|
<h2>Firmware-Library</h2>
|
|
<p>Quelle: <code>{{ firmware_root }}</code></p>
|
|
|
|
<form id="scan-form" data-action="/firmware/scan" data-target="#scan-result">
|
|
<button type="submit">Library scannen</button>
|
|
<span id="scan-result"></span>
|
|
</form>
|
|
|
|
{% if not firmware %}
|
|
<p class="empty">Noch keine Einträge. Lege Firmware-Dateien unter
|
|
<code>{{ firmware_root }}</code> ab und klicke "Library scannen".</p>
|
|
{% else %}
|
|
<table class="grid">
|
|
<thead>
|
|
<tr>
|
|
<th>Vendor</th><th>Modell</th><th>SoC</th><th>Region</th>
|
|
<th>Format</th><th>Größe</th><th>Pfad</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for fw in firmware %}
|
|
<tr>
|
|
<td>{{ fw.vendor or "—" }}</td>
|
|
<td><a href="/firmware/{{ fw.id }}">{{ fw.model or "—" }}</a></td>
|
|
<td>{{ fw.soc or "—" }}</td>
|
|
<td>{{ fw.region or "—" }}</td>
|
|
<td>{{ fw.format }}</td>
|
|
<td>{{ fw.size|humansize }}</td>
|
|
<td><code>{{ fw.rel_path }}</code></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
{% endblock %}
|