Build for Raspberry Pi 5

Wild guess since https://github.com/rsta2/circle?tab=readme-ov-file#building doesn't really document it yet
pull/638/head
probonopd 4 weeks ago committed by GitHub
parent 0cdb75fe70
commit 6324d7f08f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      .github/workflows/build.yml

@ -27,6 +27,12 @@ jobs:
wget -q https://developer.arm.com/-/media/Files/downloads/gnu-a/10.3-2021.07/binrel/gcc-arm-10.3-2021.07-x86_64-arm-none-eabi.tar.xz
tar xf *-arm-none-eabi.tar.xz
mkdir -p kernels
- name: Build for Raspberry Pi 5
run: |
set -ex
export PATH=$(readlink -f ./gcc-*aarch64-none*/bin/):$PATH
RPI=5 bash -ex build.sh
cp ./src/kernel*.img ./kernels/
- name: Build for Raspberry Pi 4
run: |
set -ex

Loading…
Cancel
Save