Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ jobs:
run: python src/sourceos_boot/validate_boot_release_set.py examples/boot-release-set.example.json
- name: Run tests
run: |
python -m pip install --upgrade pip pytest
python -m pip install --upgrade pip pytest jsonschema
python -m pytest
25 changes: 25 additions & 0 deletions .sourceos/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"repo": "SourceOS-Linux/sourceos-boot",
"domain": "boot",
"specVersion": "0.1.0",
"ownedSchemas": [
"BootReleaseSet"
],
"syncEngines": [],
"sourceChannels": [],
"policyClasses": [
"critical"
],
"auditEvents": [
"boot.rollback.planned",
"boot.rollback.applied",
"boot.rollback.denied",
"boot.chain.validated"
],
"dangerousSurfaces": [
"boot.efi_vars_mutable",
"boot.rollback.forced",
"boot.generation.deletion"
],
"notes": "Asahi Linux boot chain model for Apple Silicon. efiVarsMutable must always be false — mutating EFI vars on M1/M2 can prevent macOS from booting."
}
Loading