-
Notifications
You must be signed in to change notification settings - Fork 0
Command Reference
github-actions[bot] edited this page Dec 9, 2025
·
1 revision
Quick reference for build commands.
Main build script.
./bin/autobuild --image <name>--image <name> Build specific image
--all-images Build all images from .github/images.txt
--list-images List available images
--skip-download Use cached base images
--skip-qemu Skip QEMU setup
--skip-compress Skip PiShrink compression
--clean Clean previous build artifactsSee Build System - Autobuild Command for comprehensive examples and options.
Low-level merge script (called by autobuild).
./bin/merge-debian-raspios.sh <raspios-image> <debian-image> [options]-o, --output <file> Output image name
-s, --size <size> Final image size (e.g., 16G)
-k, --keep-kernel Use Debian kernel (not recommended)# Basic merge
./bin/merge-debian-raspios.sh raspios.img debian.raw
# Custom output and size
./bin/merge-debian-raspios.sh raspios.img debian.raw -o custom.img -s 16G# Decompress and flash
xz -dc image.img.xz | sudo dd of=/dev/sdX bs=4M status=progress conv=fsync
# Flash uncompressed
sudo dd if=image.img of=/dev/sdX bs=4M status=progress conv=fsync
# Sync
sync# Update system
sudo apt update && sudo apt upgrade -y
# Check first-boot logs
sudo journalctl -u services-first-boot
# Check service status
sudo systemctl status docker
incus list
# Network info
ip addr show
nmcli con showSee Build System for detailed usage.