From d01acf685c2a138a3b08faac2c706babf43c0918 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Mon, 25 Nov 2024 14:04:04 +0000 Subject: [PATCH] Add a SBOM template in CycloneDX format 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 --- sbom.cdx.json | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 sbom.cdx.json diff --git a/sbom.cdx.json b/sbom.cdx.json new file mode 100644 index 0000000..308a6f2 --- /dev/null +++ b/sbom.cdx.json @@ -0,0 +1,44 @@ +{ + "bomFormat": "CycloneDX", + "specVersion": "1.6", + "version": 1, + "metadata": { + "authors": [ + { + "name": "@VCS_SBOM_AUTHORS@" + } + ] + }, + "components": [ + { + "type": "library", + "bom-ref": "pkg:github/MIPI-Alliance/public-mipi-sys-t@@VCS_TAG@", + "cpe": "cpe:2.3:a:mipi:public-mipi-sys-t:@VCS_TAG@:*:*:*:*:*:*:*", + "name": "MIPI SyS-T", + "version": "@VCS_VERSION@", + "description": "MIPI Alliance Specification for System Software-Trace defines a platform-independent, low bandwidth trace data protocol and software API", + "supplier": { + "name": "MIPI Alliance developers" + }, + "authors": [ + { + "name": "@VCS_AUTHORS@", + "url": "https://github.com/MIPI-Alliance/public-mipi-sys-t/blob/main/CODEOWNERS" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/MIPI-Alliance/public-mipi-sys-t" + } + ] + } + ] +}