8 Commits

17 changed files with 5 additions and 5 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -50,29 +50,29 @@ if __name__ == "__main__":
targets = [
(
"Ultra Standalone",
"Ultra Standalone-MOD",
os.path.join(PATCHED_DIR, "Ultra-TDeck-v9.2.patched.bin"),
ultra_patches,
),
(
"Ultra Merged",
"Ultra Merged-MOD",
os.path.join(PATCHED_DIR, "Ultra-TDeck-v9.2-merged.patched.bin"),
[(n, o + 0x10000, e, p) for n, o, e, p in ultra_patches],
),
(
"MeshOS Standalone",
"MeshOS Standalone-MOD",
os.path.join(PATCHED_DIR, "MeshOS-TDeck-1.1.8.patched.bin"),
meshos_patches,
),
(
"MeshOS Merged",
"MeshOS Merged-MOD",
os.path.join(PATCHED_DIR, "MeshOS-TDeck-1.1.8-merged.patched.bin"),
[(n, o + 0x10000, e, p) for n, o, e, p in meshos_patches],
),
]
all_passed = True
print("=== Firmware Patch Verification Harness ===")
print("=== T-Deck-MOD Firmware Patch Verification Harness ===")
for label, path, p in targets:
print(f"\n{label}:")
report = check_binary(path, p)