From 647e2c9029d191933f471ddec572b841f951210e Mon Sep 17 00:00:00 2001 From: Christian Walter Date: Wed, 31 Mar 2021 12:04:43 +0200 Subject: [PATCH] security/intel/cbnt: Fix ibbhash command line Using brackets here seems to break the build for _some_ environments. Removing the brackets fixes it and works just fine. Change-Id: I965b0356337fe74281e7f410fd2bf95c9d96ea93 Signed-off-by: Christian Walter Reviewed-on: https://review.coreboot.org/c/coreboot/+/51974 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons Reviewed-by: Deomid "rojer" Ryabkov Reviewed-by: Arthur Heymans --- src/security/intel/cbnt/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/security/intel/cbnt/Makefile.inc b/src/security/intel/cbnt/Makefile.inc index 788b1b7567..0eea0a7b6c 100644 --- a/src/security/intel/cbnt/Makefile.inc +++ b/src/security/intel/cbnt/Makefile.inc @@ -49,7 +49,7 @@ $(obj)/bpm_unsigned.bin: $(obj)/coreboot.rom $(BG_PROV) --pbet=$(CONFIG_INTEL_CBNT_PBET) \ --ibbflags=$(CONFIG_INTEL_CBNT_IBB_FLAGS) \ --entrypoint=$(shell printf "%d" 0xfffffff0) \ - --ibbhash={11,4,12} \ + --ibbhash=11,4,12 \ --ibbsegbase=$(call int-add, $(call int-subtract, 0xffffffff $(CONFIG_C_ENV_BOOTBLOCK_SIZE)) 1) \ --ibbsegsize=$(shell printf "%d" $(CONFIG_C_ENV_BOOTBLOCK_SIZE)) \ --ibbsegflag=0 \