Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/creating-update/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cd /opt/PlanktoScope/os/pkos
sudo ./pkos.js reboot A

# Install RPI OS to slot B
rauc install PlanktoScopeOS-2026-04-21-raspios.raucb
rauc install PlanktoScopeOS-2026-06-18-raspios.raucb

# Boot to slot B
cd /opt/PlanktoScope/os/pkos
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/community/contribute/tips-and-tricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This page provides useful snippets and how-tos while developing software for the

## Building the OS

You will have to flash [2026-04-21-raspios-trixie-arm64-lite.img.xz](https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2026-04-21/).
You will have to flash [2026-06-18-raspios-trixie-arm64-lite.img.xz](https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2026-06-19/2026-06-18-raspios-trixie-arm64-lite.img.xz).

⚠️ No other version is supported. ⚠️

Expand Down
4 changes: 2 additions & 2 deletions os/image/rpios.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import { getBlockDevices, umount, getMountPoint } from "./lib.js"
import { getRaspberryPiOSReference } from "./rpi.js"

// ⚠️ IMPORTANT sync reference with setup.sh
const url = `https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2026-04-21/2026-04-21-raspios-trixie-arm64-lite.img.xz`
const url = `https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2026-06-19/2026-06-18-raspios-trixie-arm64-lite.img.xz`
const sha256 =
"4cd31df026fd82243805a326dc0cafd7383f7e3d30c9413e7044d507aae281e2"
"acff736ca7945e3b305f07cda4abdb870910e12634991da69783611756e381b3"
const file = basename(url)
const img = basename(url, ".xz")
const reference = file.match(/(.*)-raspios-.*.img/)?.[1]
Expand Down
2 changes: 1 addition & 1 deletion os/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# It is meant to be run on a specific Raspberry OS Pi OS standard installation.

line=$(head -n 1 /etc/rpi-issue)
reference="2026-04-21"
reference="2026-06-18"
expected="Raspberry Pi reference $reference"

if [ "$line" != "$expected" ]; then
Expand Down