From bdd7024da3a71854c6ce15c312581900e9b817c8 Mon Sep 17 00:00:00 2001 From: Andrii Klymenko Date: Tue, 21 Apr 2026 18:15:59 +0300 Subject: T8542: Add functionality to generate SBOM file from ISO image Add make_sbom target to Makefile. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 6316e016..a57538fc 100644 --- a/Makefile +++ b/Makefile @@ -90,6 +90,11 @@ qemu-live: checkiso oci: checkiso scripts/iso-to-oci $(ISO_PATH) +.PHONY: make_sbom +.ONESHELL: +make_sbom: checkiso + @scripts/check-qemu-install --debug --iso $(ISO_PATH) --sbom --cpu 2 --memory 4 $(if $(SBOM_OUTPUT_DIR),--sbom-output-dir $(SBOM_OUTPUT_DIR)) + .PHONY: clean .ONESHELL: clean: -- cgit v1.2.3