e9c504c0d7
Lint & Validate / lint (push) Has been cancelled
Adds complete SD card image builder for the RPi Audio Mixer: - build/build.sh: Main builder (RPiOS Lite base + chroot config + optional RT kernel cross-compile) - build/configure-system.sh: Chroot configuration (packages, services, audio config) - build/first-boot/setup-wizard.sh: Interactive first-boot setup (audio, WiFi, hostname, API key, JACK) - build/README.md: Flashing instructions and build documentation - Updated .gitignore to track build scripts but ignore artifacts - Updated README.md with current project status 735/735 tests pass. Build runs on x86_64 without a Raspberry Pi.
73 lines
735 B
Plaintext
73 lines
735 B
Plaintext
# Raspberry Pi RT Audio Mixer — .gitignore
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg-info/
|
|
dist/
|
|
# Build outputs (ignore artifacts, track scripts/configs)
|
|
/build/work/
|
|
/build/downloads/
|
|
/build/out/
|
|
/build/*.img
|
|
/build/*.img.xz
|
|
!/build/*.sh
|
|
!/build/*.md
|
|
!/build/.gitkeep
|
|
!/build/first-boot/
|
|
*.egg
|
|
.eggs/
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# C/C++
|
|
*.o
|
|
*.obj
|
|
*.a
|
|
*.la
|
|
*.lo
|
|
*.dll
|
|
*.dylib
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
|
|
# Kernel build artifacts
|
|
*.ko
|
|
*.mod.c
|
|
*.mod
|
|
modules.order
|
|
Module.symvers
|
|
.tmp_versions/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
*.log
|
|
|
|
# Credentials (never commit)
|
|
.git-credentials
|
|
*gitea-creds*
|
|
|
|
# Cross-compilation
|
|
toolchains/
|
|
sysroot/
|
|
|
|
# Package files
|
|
*.deb
|
|
*.rpm
|
|
*.tar.gz
|
|
*.tar.xz
|