Initial commit

This commit is contained in:
2025-05-25 18:14:25 +00:00
commit 86fbf1670c
17 changed files with 846 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# Start from the official Rust dev container image for Debian 12 (bookworm)
FROM mcr.microsoft.com/devcontainers/rust:1-1-bookworm
# Install ARM cross-compilation toolchain packages
RUN apt-get update && \
apt-get install -y --no-install-recommends \
gdb-multiarch \
gcc-arm-linux-gnueabihf \
g++-arm-linux-gnueabihf \
binutils-arm-linux-gnueabihf && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN rustup target add armv7-unknown-linux-gnueabihf