Add FreeBSD resumable download docs

Document that the same curl resume-and-retry pattern applies on FreeBSD, and point TESTING at FLASHING as the canonical Linux and FreeBSD guide.

---

Build: pass — sh -n build.sh

Tests: pass — git diff --check
This commit is contained in:
Sam & Claude 2026-05-16 22:23:18 +02:00
parent fc6c8ea9e1
commit 64365feef7
4 changed files with 14 additions and 5 deletions

View file

@ -65,8 +65,8 @@ gzip -dc clawdie-xfce-quindecim-usb-DD.MM.YY.img.gz | sudo dd of=/dev/daX bs=1M
sync
```
For Linux downloads from the published HTTPS path, prefer resumable `curl`
with retries before flashing:
For Linux or FreeBSD downloads from the published HTTPS path, prefer resumable
`curl` with retries before flashing:
```sh
curl -fL --continue-at - --retry 5 --retry-delay 5 --progress-bar -O \

View file

@ -85,6 +85,15 @@ camcontrol devlist
gpart show
```
Download with resume and retries:
```sh
curl -fL --continue-at - --retry 5 --retry-delay 5 --progress-bar -O \
https://osa.smilepowered.org/downloads/iso/clawdie-xfce-quindecim-usb-DD.MM.YY.img.gz
curl -fL --retry 5 --retry-delay 5 -O \
https://osa.smilepowered.org/downloads/iso/clawdie-xfce-quindecim-usb-DD.MM.YY.img.gz.sha256
```
Verify the downloaded artifact:
```sh

View file

@ -166,7 +166,7 @@ Notes:
Published artifacts are compressed as `.img.gz`. Stream them directly into
`dd`; do not gunzip first unless you specifically need the raw image file.
Linux download with resume and retries:
Download on Linux or FreeBSD with resume and retries:
```sh
curl -fL --continue-at - --retry 5 --retry-delay 5 --progress-bar -O \

View file

@ -148,8 +148,8 @@ sudo dd if=/dev/zero of=/dev/sdX bs=16M status=progress conv=fsync
### Flash the image
Use [FLASHING.md](FLASHING.md) as the canonical flashing guide. For a published
compressed image on Linux, the default path is:
Use [FLASHING.md](FLASHING.md) as the canonical flashing guide for Linux and
FreeBSD. For a published compressed image on Linux, the default path is:
```sh
curl -fL --continue-at - --retry 5 --retry-delay 5 --progress-bar -O \