Docker image for cross to build rust packages for the Onion Omega 2S(+)
Go to file
Andreas Mieke 21264640b7
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Version 1.1.0
- Add correct linker to Dockerfile
- Update README to reflect change in usage
- Add ARM instructions to README
2024-11-21 02:27:29 -05:00
.gitignore Initial commit 2024-07-26 06:34:07 +00:00
.woodpecker.yml revert: Base image doesn't do ARM :( 2024-11-20 23:47:21 -05:00
Dockerfile feat(linker): Add cargo linker to dockerfile 2024-11-21 01:41:39 -05:00
LICENSE feat(build): Add Docker build 2024-07-26 05:49:36 -04:00
openwrt-build-config feat(build): Add Docker build 2024-07-26 05:49:36 -04:00
README.md docs: Update README for new release 2024-11-21 02:25:56 -05:00

onion2s-build

Docker image for cross to build Rust packages for the Onion Omega 2S(+)

Prerequisites

You will need to have the rustup version of cargo installed, for more information look at the official Rust documentation. You need Docker (or Podman) up and running, and you need to install cross with:

cargo install cross

You will also need to install the nightly toolchain of Rust for your platform:

rustup install nightly

On the first run of cross, cross will also install a nightly toolchain that is able to run in the Docker image (amd64).

A note on ARM Macs

When trying to run cross on an ARM based Mac, docker will try to download the image for the ARM arch. Since cross doesn't provide ARM base images, this will fail. However, utilizing Rosetta, it is possible to run AMD64 images. To use those, pull the image manually using docker:

docker pull --platform linux/amd64 git.merp.digital/zenermerps/onion2s-build:latest

This ensures docker will find an image with the correct name and tag, and doesn't try to download the non-existing ARM version.

Configuration

To compile for the Onion Omega 2S(+) you need to add the following configuration to your Cargo.toml:

[package.metadata.cross.target.mipsel-unknown-linux-musl]
image = "git.merp.digital/zenermerps/onion2s-build:latest"
build-std = true

Build

You then can use cross +nightly as replacement for cargo. You need to specify the correct target with: --target mipsel-unknown-linux-musl, this is all you need to compile for the Onion Omega 2S(+).

For example:

cross +nightly build --release --target mipsel-unknown-linux-musl