aboutsummaryrefslogtreecommitdiff
path: root/src/security/intel/cbnt/Makefile.inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/security/intel/cbnt/Makefile.inc')
-rw-r--r--src/security/intel/cbnt/Makefile.inc31
1 files changed, 29 insertions, 2 deletions
diff --git a/src/security/intel/cbnt/Makefile.inc b/src/security/intel/cbnt/Makefile.inc
index 9f495048dd..b508974283 100644
--- a/src/security/intel/cbnt/Makefile.inc
+++ b/src/security/intel/cbnt/Makefile.inc
@@ -20,6 +20,19 @@ $(obj)/bpm_pub.pem: $(call strip_quotes, $(CONFIG_INTEL_CBNT_BPM_PUB_KEY_FILE))
cp $< $@
endif
+BG_PROV:=$(obj)/bg-prov
+CBNT_CFG:=$(obj)/cbnt.json
+
+$(BG_PROV):
+ printf " BG_PROV building tool\n"
+ cd 3rdparty/intel-sec-tools; \
+ GO111MODULE=on go mod download; \
+ GO111MODULE=on go mod verify; \
+ GO111MODULE=on go build -o $(top)/$@ cmd/bg-prov/*.go
+
+$(CBNT_CFG): $(call strip_quotes, $(CONFIG_INTEL_CBNT_BG_PROV_CFG_FILE))
+ cp $(CONFIG_INTEL_CBNT_BG_PROV_CFG_FILE) $@
+
ifneq ($(CONFIG_INTEL_CBNT_BOOT_POLICY_MANIFEST_BINARY),"")
cbfs-files-y += boot_policy_manifest.bin
boot_policy_manifest.bin-file := $(CONFIG_INTEL_CBNT_BOOT_POLICY_MANIFEST_BINARY)
@@ -30,9 +43,23 @@ $(call add_intermediate, add_bpm_fit, $(IFITTOOL) set_fit_ptr)
$(IFITTOOL) -r COREBOOT -a -n boot_policy_manifest.bin -t 12 -s $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES) -f $<
endif
-ifneq ($(CONFIG_INTEL_CBNT_KEY_MANIFEST_BINARY),"")
+ifeq ($(CONFIG_INTEL_CBNT_GENERATE_KM),y)
+$(obj)/km_unsigned.bin: $(obj)/km_pub.pem $(BG_PROV) $(CBNT_CFG)
+ printf " BG_PROV creating unsigned KM using config file\n"
+ $(BG_PROV) km-gen $@ $< --config=$(CBNT_CFG)
+
+$(obj)/km.bin: $(obj)/km_unsigned.bin $(BG_PROV) $(call strip_quotes, $(CONFIG_INTEL_CBNT_KM_PRIV_KEY_FILE))
+ printf " BG_PROV signing KM\n"
+ $(BG_PROV) km-sign $< $@ $(CONFIG_INTEL_CBNT_KM_PRIV_KEY_FILE) ""
+
+KM_FILE=$(obj)/km.bin
+else
+KM_FILE=$(CONFIG_INTEL_CBNT_KEY_MANIFEST_BINARY)
+endif
+
+ifneq ($(KM_FILE),"")
cbfs-files-y += key_manifest.bin
-key_manifest.bin-file := $(CONFIG_INTEL_CBNT_KEY_MANIFEST_BINARY)
+key_manifest.bin-file := $(KM_FILE)
key_manifest.bin-type := raw
key_manifest.bin-align := 0x10