diff options
author | Christian Walter <christian.walter@9elements.com> | 2021-03-31 12:04:43 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-04-06 07:06:00 +0000 |
commit | 647e2c9029d191933f471ddec572b841f951210e (patch) | |
tree | 3440de9a85a0fb33b4f540beee1939d7e04fffbd /src/security | |
parent | 0d9829dc054d2dc71e9744e85ab40185eb0c6c06 (diff) |
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 <christian.walter@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51974
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Deomid "rojer" Ryabkov <rojer9@fb.com>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/security')
-rw-r--r-- | src/security/intel/cbnt/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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 \ |