Skip to content

Commit

Permalink
Add a SBOM template in CycloneDX format
Browse files Browse the repository at this point in the history
Improve supply chain security by including a SBOM file with substituted values.

This will be used to construct a composite platform SBOM.

Signed-off-by: Richard Hughes <[email protected]>
  • Loading branch information
hughsie committed Nov 21, 2024
1 parent 0f3867f commit 03db684
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions sbom.cdx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"bomFormat": "CycloneDX",
"specVersion": "1.6",
"version": 1,
"metadata": {
"authors": [
{
"name": "@VCS_SBOM_AUTHORS@"
}
]
},
"components": [
{
"type": "firmware",
"bom-ref": "pkg:github/tianocore/edk2@@VCS_TAG@",
"cpe": "cpe:2.3:a:tianocore:edk2:@VCS_TAG@:*:*:*:*:*:*:*",
"name": "EDK II",
"version": "@VCS_VERSION@",
"description": "A cross-platform firmware development environment for UEFI and PI specifications",
"authors": [
{
"name": "@VCS_AUTHORS@"
}
],
"supplier": {
"name": "EDK II developers"
},
"licenses": [
{
"license": {
"id": "Apache-2.0"
}
},
{
"license": {
"id": "BSD-2-Clause"
}
},
{
"license": {
"id": "BSD-3-Clause"
}
},
{
"license": {
"id": "MIT"
}
},
{
"license": {
"id": "PSF-2.0"
}
},
{
"license": {
"id": "Zlib"
}
}
],
"externalReferences": [
{
"type": "website",
"url": "https://www.tianocore.org/"
},
{
"type": "vcs",
"url": "https://github.com/tianocore/edk2"
}
]
}
]
}

0 comments on commit 03db684

Please sign in to comment.