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:
parent
fc6c8ea9e1
commit
64365feef7
4 changed files with 14 additions and 5 deletions
4
BUILD.md
4
BUILD.md
|
|
@ -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 \
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 \
|
||||
|
|
|
|||
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue