diff options
author | Martin Roth <martin@coreboot.org> | 2021-05-10 11:28:45 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-05-12 15:13:37 +0000 |
commit | b403da65cddff557da67cabd1a66e1053b8967c7 (patch) | |
tree | 252777c4b9cca63b6a6771c9df84715de89fcb46 | |
parent | ce01379b66b976fccd5255d5210b9c121d6eb9f1 (diff) |
src/security/intel/stm: Add warning for non-reproducible build
Because the STM build doesn't use the coreboot toolchain it's not
reproducible. Make sure that's displayed during the build.
Signed-off-by: Martin Roth <martin@coreboot.org>
Change-Id: I3f0101400dc221eca09c928705f30d30492f171f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54020
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
-rw-r--r-- | src/security/intel/stm/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/security/intel/stm/Makefile b/src/security/intel/stm/Makefile index 1493869e80..31e5bdd88a 100644 --- a/src/security/intel/stm/Makefile +++ b/src/security/intel/stm/Makefile @@ -18,6 +18,8 @@ all: build build: echo "STM - Build" + echo "-- WARNING: This uses the system toolchain instead of" + echo " the coreboot toolchain, so is not reproducible." cd $(project_dir)/Stm; \ mkdir -p build; \ cd build; \ |