Building the ISO
This page is for developers and advanced testers. Most people should download the signed Beta 1 artifact from Installation instead of rebuilding it.
Build host
Use an up-to-date Arch Linux host with:
archiso,base-devel, Git, CMake, Ninja, Qt 6 development tools, and QML
linting tools;
xorriso,squashfs-tools, ImageMagick, QEMU, OVMF, and SPICE tooling;- enough free space for the Archiso work tree and output image;
- a clean, pinned Aero7-shell checkout at the path recorded in
sources.lock.
The build reads Aero7-shell as a source payload. It verifies the checkout's origin, exact commit, and working-tree digest before copying a runtime-only subset. It does not run the shell installer against the build host.
1. Validate the source tree
./scripts/check.shThis runs Python tests, Qt controller tests, QML linting, syntax checks, package parity checks, source-lock validation, and visual smoke tests. ShellCheck is run when it is available.
2. Prepare and build
sudo ./scripts/build-iso.shThe script prepares the live profile, compiles the installer, imports the pinned runtime payload, and invokes Archiso. If preparation already completed and only the privileged Archiso phase remains, use:
sudo ./scripts/build-iso.sh --mkarchiso-onlyThe build script publishes atomically: it stages a complete ISO before moving it into out/. It also refuses to build while mounts remain below its work tree, preventing SquashFS from traversing host pseudo-filesystems.
3. Verify the artifact
./scripts/verify-release.shVerification checks the ISO 9660/GPT/UEFI structure, embedded SquashFS, boot entry, Beta identity, source lock, disk guards, focused Plasma package list, Aero taskbar layout, application branding, and login artwork.
4. Test in a disposable VM
./scripts/run-qemu.sh --fresh--fresh creates a new disposable VM disk; it does not rebuild the ISO. Use --iso /absolute/path/image.iso to test a non-current artifact. See Testing and Release for the complete test flow.
Output safety
- Never point a development launcher at a host block device.
- Never weaken the supported-device-path, fingerprint, or live-media checks for
convenience.
- Never publish an ISO unless its checksum was generated from the exact file
that passed verification and the fresh-VM gate.
- Review Credits and Licensing before redistributing
any derivative image.