diff --git a/BUILD.md b/BUILD.md index 18806dd2..4aa44cfd 100644 --- a/BUILD.md +++ b/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 \ diff --git a/FLASHING.md b/FLASHING.md index acb480db..06c3bd1c 100644 --- a/FLASHING.md +++ b/FLASHING.md @@ -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 diff --git a/README.md b/README.md index bfcb3da6..4cf216de 100644 --- a/README.md +++ b/README.md @@ -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 \ diff --git a/TESTING.md b/TESTING.md index 0154aa86..9acec645 100644 --- a/TESTING.md +++ b/TESTING.md @@ -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 \