Add AArch64 crossbuild via Podman
All checks were successful
Build App / Build (push) Successful in 2m32s

Limit FPS
Config screen W/H
This commit is contained in:
2025-04-04 17:42:19 +02:00
parent 4e58d9a50e
commit b74831cdff
5 changed files with 42 additions and 15 deletions

12
buildaarch64.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
echo "build podman image"
podman build . -t cross_compile/rust_aarch64
echo "run build"
podman run --rm -v .:/app cross_compile/rust_aarch64
ssh tom@raspberrypi.local -f 'sudo systemctl stop lightdm'
ssh tom@raspberrypi.local -f 'killall ladose-caller'
scp ./target/aarch64-unknown-linux-gnu/release/ladose-caller tom@raspberrypi.local:
ssh tom@raspberrypi.local -f 'sudo systemctl start lightdm'