A4 inline (agent failed on API): - docs/INSTALL-V07.md: 130-line user walkthrough — bootstrap ISO, Anaconda LUKS prompts, ostreecontainer pull, first-login TUI, day- to-day bootc-upgrade / rpm-ostree-install / bootc-rollback. - docs/STRATEGY.md: append PIVOT EXECUTION 2026-05-06 section recording v0.5 ship, v0.6 cancel, v0.7 active. - README.md: rewrite Quick install block for v0.7 path; legacy v0.5.0 block kept below. - CHANGELOG.md: Unreleased entry covering the spike's CI port + atomic CLI port + docs.
9.9 KiB
9.9 KiB
Changelog
All notable changes to veilor-os are documented here.
The format follows Keep a Changelog, and this project loosely follows Semantic Versioning during the pre-1.0 phase.
Each release section records the bug found and the fix applied so future maintainers can see why a change exists, not just what it changes.
[Unreleased]
v0.7 BlueBuild OCI spike (active)
- Promote
v0.7-bluebuild-spiketo active mainline; v0.6 cancelled. - Port
build-bluebuild.ymlto the Forgejo runner (runs-on: nullstone): install BlueBuild CLI in-job, push togit.s8n.ru/veilor-org/veilor-os, gate cosign keyless / SBOM / attest steps to GitHub-only. - Atomic CLI tools:
veilor-updaterewritten onbootc upgrade, newveilor-postinstallfirst-login TUI,veilor-doctorlearnsbootc status --jsonwhile keeping the legacy dnf path. - Docs:
docs/INSTALL-V07.md,docs/STRATEGY.mdPIVOT EXECUTION section, README quick-install rewritten for v0.7.
Planned
- v0.3 polish — Plymouth black theme, SDDM theme, Konsole profile,
wallpaper SVG. Re-enable
init_on_alloc=1 init_on_free=1post-install viaveilor-firstbootso live boot stays fast but installed system keeps the memory hygiene. - USBGuard auto-snapshot on first boot.
- veilor-firstboot UX improvements (cleaner banner, better error paths).
[0.2.5] — 2026-05-01
Commit: 8515bdb
Fixed
- Live boot took 5+ minutes on KVM. Dracut sat at the parse-livenet
stage for what looked like a hang. Root cause:
init_on_alloc=1andinit_on_free=1zero every memory page on allocation and free. In a virtualised guest with paravirtual memory, this multiplied the early-boot cost by ~5x. Removed both flags from the live kernel cmdline.
Notes
- The two memory-hygiene flags will be re-added on the installed
system via
veilor-firstbootin v0.3 — the cost on bare metal is negligible, the live-ISO penalty is the only place it bites. - Live cmdline retained:
lockdown=integrity slab_nomerge randomize_kstack_offset=on vsyscall=none.
[0.2.4] — 2026-05-01
Commit: a23ce63
Fixed
- VM booted but stalled at dracut "parse-livenet" looking for a label
that never matched. Root cause: an upstream bug in
livecd-tools—imgcreate/live.py::__get_efi_image_stanza()writes the EFI grub stanza asroot=live:LABEL=...for dracut. Dracut on live ISOs expectslive:CDLABEL=...for ISO9660 volume labels;LABEL=matches partition labels which a live ISO doesn't have. - Patched
live.pyin-place inside the CI build container before invokinglivecd-creator. With the patched stanza, the VM booted cleanly to the SDDM login prompt.
Changed
- CI workflow now
seds the patch into the installedlive.pyand asserts the patch landed before continuing the build.
Notes
- Bug also affects
livemedia-creator --make-iso --no-virtand any other consumer ofimgcreate.LiveImageCreator. Worth filing upstream once we have a clean repro recipe.
[0.2.3] — 2026-05-01
Commit: ef54a24
Added
- Manual
useradd admininvocation in chroot%post.livecd-creatordoes not run an installer phase, so the kickstartuserdirective is silently ignored. Without this, the booted live system has no admin account at all, and SDDM falls back to "no users" — login impossible.
Fixed
/etc/os-releasewas still pointing at stock Fedora. Even with the overlay tree successfully copied,kde-theme-apply.shwas resolving/etc/os-release.d/veilorfrom the wrong path (the build host's repo, not the overlay's installed location).- Rewired the symlink chain cleanly:
/etc/os-release → ../usr/lib/os-release, with the override file written to/usr/lib/os-releasedirectly during%post. - Branding now reflects veilor-os in
/etc/os-release,hostnamectl, and the SDDM session menu.
Notes
- The
user --name=admindirective stays in the kickstart for documentation and for any futurelivemedia-creator-based installer ISO that does honour it.
[0.2.2] — 2026-05-01
Commit: 3408841
Fixed
- Overlay was partially copied — boot worked but veilor-power, KDE
theme, custom scripts were all missing. Found via offline debugfs
inspection of the v0.2.1 rootfs: tuned profiles, sshd hardening,
sudoers entries, and systemd units were present, but
/usr/share/veilor-os/{assets,scripts}was empty. - Root cause:
%post --nochrootran withset -eu. When the firstcpof a non-essential overlay file returned non-zero, the script aborted, leaving the assets/scripts copy step un-executed. None of the chroot%postscripts could then find what they needed and they silently no-op'd.
Changed
%post --nochrootnow usesset +earoundcp/mkdirso a partial-permissions error on one tree doesn't kill the whole copy.- Added
/var/log/veilor-nochroot.log— every action in%post --nochrootnow traces with timestamps. Future debugging is onejournalctl --bootaway.
Notes
- The looser error handling is intentional but bounded — only the
overlay copy uses
set +e. Hardening scripts that follow run with strict mode.
[0.2.1] — 2026-05-01
Commit: 9c6136f
Fixed
- ISO booted, but it was effectively bare Fedora KDE. No
hardening, no theme, no
veilor-power, no/etc/os-releaseoverride. Confirmed by mounting v0.2.0 with debugfs:/etc/os-releasesymlinked to../usr/lib/os-release(Fedora's default), no/usr/share/veilor-os, no overlay files anywhere. - Root cause:
%post --nochroothardcoded/mnt/sysimageas the destination./mnt/sysimageis the livemedia-creator install root. We had switched the build pipeline to livecd-creator, which exposes the destination as$INSTALL_ROOT— a different path inside its tmpfs sandbox. - Switched the copy target to
$INSTALL_ROOT.
Notes
- Partial overlay landed in v0.2.1 (tuned, sshd, sddm.conf) — but
/usr/share/veilor-os/{assets,scripts}was still missing becauseset -euaborted partway through the cp tree. That fix is in v0.2.2. - Lesson learned: tooling-specific environment variables matter.
$INSTALL_ROOTis the portable answer;/mnt/sysimageis a livemedia-creator-only convention.
[0.2.0] — 2026-04-30
Commit: 7c4a94d (tagged release)
Added
- First green ISO. Reproducible build pipeline lands.
- GitHub Actions workflow
build-iso.ymlproduces a UEFI+BIOS-bootable live ISO fromkickstart/veilor-os.ks. - CI: kickstart syntax linting (
ksvalidator) gate. - Kickstart based on Fedora 43, KDE Plasma minimal, hardening
packages selected (
fail2ban,usbguard,tuned,audit,firewalld). - Overlay tree authored: tuned profiles, sshd hardening, sysctl drop-in, sudoers, udev rules, KDE theme assets, Fira Code font.
- 3-mode power profiles:
veilor-power save | mid | perfwith AC/battery udev auto-switching.
Notes — known limitations of v0.2.0
- The overlay never actually applied to the installed system.
The
%post --nochrootcopy step targeted/mnt/sysimage(livemedia-creator's install root) but the build pipeline had moved to livecd-creator, which uses$INSTALL_ROOT. Result: the ISO boots and presents a working KDE Plasma desktop, but it is in practice stock Fedora 43 KDE with no veilor-os hardening, branding, theme, or power scripts applied. - v0.2.0 is best understood as a build-pipeline milestone — the ISO format, EFI/BIOS bootability, partitioning, and squashfs build all work end-to-end. The userspace customisation layer was wired but not delivering. Treat v0.2.0 as proof-of-build, not as a feature-complete release.
- See v0.2.5 for the first feature-complete ISO that actually ships veilor-os hardening and branding into the running system.
Build pipeline path to green
For posterity, the issues resolved between v0.1 (scaffold) and v0.2.0 (first green ISO):
- pcre2 / selinux-policy version skew on stock Fedora 43 base —
worked around with a pinned
fix-repofor the local build only; CI usesdnf upgrade --refreshto sidestep entirely. - KDE Plasma hard-deps (cups, geoclue2, ModemManager, PackageKit) — kept at the package level, masked at the daemon level.
%post --nochrootsource path — multi-path detection added so the overlay can be sourced from/work(CI) or/run/install/repo(virt) or kickstart-relative (no-virt).livemedia-creator --make-iso --no-virtproduced a squashfs but no EFI/BOOT image. Switched tolivecd-creator(livecd-tools) which is purpose-built for live ISOs and handles EFI grafting.- Tmpdir on
/tmpexhausted the GitHub Actions tmpfs cap (16GB vs ~30GB working set). Moved to/var/lmcon the runner's host ext4.
[0.1.0] — 2026-04-29
Commit: 1822005
Added
- Initial repo scaffold:
kickstart/,build/,overlay/,scripts/,assets/,docs/,test/. - Kickstart skeleton (Fedora 43 KDE base, single-prompt LUKS install,
hardened bootloader cmdline, locked root, blank-password admin with
chage -d 0to force first-boot reset). - Hardening scripts ported and rebranded from operator's reference
system: base hardening, kernel hardening, custom SELinux policy
module
veilor-systemd. - KDE theme: BreezeBlackPure base + grey accent (
#686B6F). - Fira Code chosen as system font (Fedora
fira-code-fonts, SIL OFL 1.1). - Test harness: VM runner (
test/run-vm.sh) with QEMU + OVMF for fast iteration, withSECBOOT=1andFRESH=1modes. - Documentation:
BUILD.md,INSTALL.md,HARDENING.md,POWER.md,boot-checklist.md.
Notes
- v0.1 was scaffold-only — no green ISO yet. Build pipeline iterated through ~22 distinct toolchain issues before producing v0.2.0.
- All
onyxreferences stripped from shipped artifacts; comments refer to "reference system" only.