Use xz compression for metal disk images instead of zst

This commit is contained in:
Stephen Wheet
2026-03-10 21:24:49 -07:00
parent c62a8373a2
commit bffdcedeb7
2 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -26,11 +26,11 @@ Initial:
```bash
# Raspberry Pi 5 / CM5
unzstd metal-arm64-rpi5.raw.zst
xz -d metal-arm64-rpi5.raw.xz
dd if=metal-arm64-rpi5.raw of=<disk> bs=4M status=progress
# Raspberry Pi 4 / CM4
unzstd metal-arm64-rpi4.raw.zst
xz -d metal-arm64-rpi4.raw.xz
dd if=metal-arm64-rpi4.raw of=<disk> bs=4M status=progress
```