The repository can be used to build custom Raspberry Pi images with thin-edge.io and Rugpi for robust OTA Operating System updates.
Using u-boot
- Raspberry PI 1B
- Raspberry PI 2B Rev 1.2
- Raspberry PI Zero
- Raspberry PI Zero 2 W
- Raspberry PI 3
Using tryboot
- Raspberry Pi 4
- Raspberry Pi 5
The following images are included in this repository.
Image | Description |
---|---|
rpi-tryboot | Image for Raspberry Pi 4 and 5 devices which use the tryboot bootloader |
rpi-tryboot-containers | Image for Raspberry Pi 4 and 5 devices which use the tryboot bootloader and with docker pre-installed |
rpi-tryboot-rpi4 | Raspberry Pi 4 image which includes the firmware to enable tryboot bootloader |
rpi-u-boot | Image for Raspberry Pi 2, 3, zero 2W |
rpi-u-boot-containers | Image for Raspberry Pi 2, 3, zero 2W with docker pre-installed |
rpi-u-boot-armhf | Image for Raspberry Pi 1 and zero |
rpi-u-boot-armhf-containers | Image for Raspberry Pi 1 and zero with docker pre-installed |
To run the build tasks, install just.
-
Clone the repository
git clone https://github.com/thin-edge/tedge-rugpi-image.git
-
Create a custom
.env
file which will be used to store secretscp env.template .env
The
.env
file will not be committed to the repo -
Edit the
.env
fileIf your device does not have an ethernet adapter, or you the device to connect to a Wifi network for onboarding, then you will have to add the Wifi credentials to the
.env
file.SECRETS_WIFI_SSID=example SECRETS_WIFI_PASSWORD=yoursecurepassword SSH_KEYS_bootstrap="ssh-rsa xxxxxxx"
Note
The Wifi credentials only need to be included in the image that is flashed to the SD card. Subsequent images don't need to included the Wifi credentials, as the network connection configuration files are persisted across images.
If an image has Wifi credentials baked in, then you should not make this image public, as it would expose your credentials!
-
Create the image (including downloading the supported base Raspberry Pi image) using:
just IMAGE=tryboot build
-
Using the path to the image shown in the console to flash the image to the Raspberry Pi.
-
Subsequent A/B updates can be done using Cumulocity IoT or the local Rugpi interface on (localhost:8088)
Notes
You can apply image updates via the device's localhost:8088 interface, however you will have to expand the
.xz
image file to a.img
file.
For further information on Rugpi, checkout the quick start guide.
To build an image with the latest pre-release version from the main channel, set the following environment variable in the .env
file in your project:
# thin-edge.io install channel. Options: "main", "release" (latest official release)
TEDGE_INSTALL_CHANNEL=main
The different image options can be confusing, so to help users a few device specific tasks were created to help you pick the correct image.
just build-pi1
just build-pi2
just build-pi3
just build-pi4
Note
All Raspberry Pi 4 and 400 don't support tryboot by default, and need their firmware updated before the tryboot
image can be used.
You can build an image which also includes the firmware used to enable tryboot. Afterwards you can switch back to using an image without the firmware included in it.
just build-pi4-include-firmware
just build-pi5
just build-pizero
just build-pizero2w
-
Ensure you have everything that you want to include in your image
-
Trigger a release by using the following task:
just release
Take note of the git tag which is created as you will need this later if you want to add the firmware to the Cumulocity IoT firmware repository
-
Wait for the Github action to complete
-
Edit the newly created release in the Github Releases section of the repository
-
Publish the release
Optional: Public images to Cumulocity IoT
You will need go-c8y-cli and gh tools for this!
-
In the console, using go-c8y-cli, set your session to the tenant where you want to upload the firmware to
set-session mytenant
-
Assuming you are still in the project's root directory
Using the release tag created in the previous step, run the following:
just publish-external <TAG>
Example
just publish-external 20231206.0800
This script will create firmware items (name and version) in Cumulocity IoT. The firmware versions will be just links to the external artifacts which are available from the Github Release artifacts.
-
Now you can select the firmware in Cumulocity IoT to deploy to your devices (assuming you have flashed the base image to the device first ;)!
You can customize the images built by the Github workflow by creating a secret within Github.
-
Create a repository secret with the following settings
Name
IMAGE_CONFIG
Value
SSH_KEYS_bootstrap="ssh-rsa xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx bootstrap" SSH_KEYS_seconduser="ssh-rsa xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx myseconduser"
Remove any lines which are not applicable to your build.
-
Build the workflow from Github using the UI (or creating a new git tag)