Add rpi-imager CLI option to flash docs

- rpi-imager --cli supports .zst.zip directly
- Also document flash-image.sh option
- Keep manual dd as fallback

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Aaron D. Lee
2026-01-05 18:11:13 -05:00
parent ac08011236
commit 4843ec8c22
2 changed files with 14 additions and 5 deletions

View File

@@ -103,10 +103,14 @@ Upload `.img.zst` to GitHub Releases.
Users can flash with: Users can flash with:
```bash ```bash
# Linux # Option 1: rpi-imager CLI (supports .zst.zip directly)
zstdcat stegasoo-rpi-*.img.zst | sudo dd of=/dev/sdX bs=4M status=progress sudo rpi-imager --cli --disable-verify stegasoo-rpi-*.img.zst.zip /dev/sdX
# Or use rpi-imager "Use custom" option # Option 2: flash-image.sh (auto-detects SD card, shows progress)
sudo ./rpi/flash-image.sh stegasoo-rpi-*.img.zst.zip
# Option 3: Manual dd
zstdcat stegasoo-rpi-*.img.zst | sudo dd of=/dev/sdX bs=4M status=progress
``` ```
--- ---

View File

@@ -198,7 +198,12 @@ Upload the `.img.zst` file to GitHub Releases.
Users flash with: Users flash with:
```bash ```bash
# Option 1: rpi-imager CLI (supports .zst.zip directly)
sudo rpi-imager --cli --disable-verify stegasoo-rpi-*.img.zst.zip /dev/sdX
# Option 2: flash-image.sh (auto-detects SD card, shows progress)
sudo ./rpi/flash-image.sh stegasoo-rpi-*.img.zst.zip
# Option 3: Manual dd
zstdcat stegasoo-rpi-*.img.zst | sudo dd of=/dev/sdX bs=4M status=progress zstdcat stegasoo-rpi-*.img.zst | sudo dd of=/dev/sdX bs=4M status=progress
``` ```
Or use rpi-imager's "Use custom" option.