From 7c2fb810bd8bbcb0f0b926f499c8c81590c32cd5 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Mon, 9 Dec 2024 13:16:05 +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 | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 sbom.cdx.json diff --git a/sbom.cdx.json b/sbom.cdx.json new file mode 100644 index 0000000..20b3ca3 --- /dev/null +++ b/sbom.cdx.json @@ -0,0 +1,51 @@ +{ + "bomFormat": "CycloneDX", + "specVersion": "1.6", + "version": 1, + "metadata": { + "authors": [ + { + "name": "@VCS_SBOM_AUTHORS@" + } + ] + }, + "components": [ + { + "type": "library", + "bom-ref": "pkg:github/coreboot/libgfxinit@@VCS_TAG@", + "cpe": "cpe:2.3:a:coreboot:libgfxinit:@VCS_TAG@:*:*:*:*:*:*:*", + "name": "libgfxinit", + "version": "@VCS_VERSION@", + "description": "A graphics initialization library for embedded environments", + "supplier": { + "name": "coreboot developers" + }, + "authors": [ + { + "name": "@VCS_AUTHORS@" + } + ], + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "externalReferences": [ + { + "type": "website", + "url": "https://www.coreboot.org/" + }, + { + "type": "vcs", + "url": "https://github.com/coreboot/libgfxinit" + }, + { + "type": "vcs", + "url": "https://review.coreboot.org/libgfxinit.git" + } + ] + } + ] +}