Conversation
…, maturity Agent-Logs-Url: https://github.com/SourceOS-Linux/sourceos-boot/sessions/b73249e0-d4de-479a-8f73-072c2a9f5adc Co-authored-by: mdheller <21163552+mdheller@users.noreply.github.com>
…turity record Agent-Logs-Url: https://github.com/SourceOS-Linux/sourceos-boot/sessions/b73249e0-d4de-479a-8f73-072c2a9f5adc Co-authored-by: mdheller <21163552+mdheller@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add NLBoot integration documentation with example fixtures and validation
Add NLBoot integration docs, fixtures, Makefile validation, and maturity record
Apr 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
sourceos-boothad no dedicated integration guide for its nlboot adapter, no Makefile validation target (required by AGENTS.md when adding fixtures), and norepo.maturity.yaml.Added
docs/NLBOOT_INTEGRATION.md— operational integration guide covering the 5-stage adapter flow (announce → authorize → fetch → verify → evidence), boot mode→channel→action mapping table, CLI usage, fixture inventory, and known gaps (signature verification not yet wired, artifact fetch/cache lives in Rust lane, host mutation gated)examples/nlboot/adapted-output.example.json— concreteNlbootAdapterOutputfixture produced by runningadapt-nlbootagainst the existing manifest/token fixtures; shows exact authorization, BootReleaseSet patch, and evidence envelope structureMakefile—validatetarget (BootReleaseSet schema validation + nlboot adapter CLI smoke test) andtesttarget (pytest), satisfying the AGENTS.md requirementrepo.maturity.yaml— M2 maturity record with integration links to nlboot, sourceos-spec, and downstream consumers, plus explicit next actions.gitignore— excludes__pycache__,.pyc,.pytest_cache, build artifactsCLI output shape (
NlbootAdapterOutput){ "apiVersion": "sourceos.dev/v1", "kind": "NlbootAdapterOutput", "authorization": { "bootReleaseSetRef": "boot/demo", "tokenId": "token-demo-1", ... }, "bootReleaseSetPatch": { "channels": ["recovery"], "artifacts": [{ "role": "kernel", ... }, ...], "signature": { "type": "x509", "bundleRef": "urn:srcos:signature:demo", ... }, "provenance": { "builderId": "trusted-key-1", "attestations": ["slsa", "in-toto"], ... } }, "evidence": { "selectedChannel": "recovery", "bootMode": "recovery", "reports": [...], ... } }No code changes; documentation, fixtures, and build metadata only.